---
title: "Get Prompt By Label Agent Scoped"
method: GET
path: "/v1/agents/{agent_id}/prompts"
tags: ["Prompts"]
---

# Get Prompt By Label Agent Scoped

`GET /v1/agents/{agent_id}/prompts`

retrieve a single prompt by label under /agents/{agent_id}/prompts?label=... .

- if label is missing -> 400
- if label resolves to 0 -> 404; >1 -> 400 ambiguous (except latest which should be unique)

## Path parameters

- `agent_id` integer, required

## Query parameters

- `label` string, nullable

## Headers

- `X-API-Key` string, required

## Response `200`

Successful Response

- PromptResponse — response model for prompt without created_at.
  - `id` string, uuid, nullable — the id of the prompt
  - `prompt_text` string, required — the prompt content
  - `commit_message` string, nullable
  - `labels` string[], nullable — labels associated with the prompt
  - `metadata` object, nullable — arbitrary JSON metadata
  - `version` integer, required — the version number of the prompt
  - `agent_id` integer, required — id of the agent that owns this prompt

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/getbluejay/apis/bluejay-api.md) · [All operations](https://skmtc.net/getbluejay/apis/bluejay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getbluejay/bluejay-api/revisions/b5daa886f4ee/schema)
