GET
/
v1
/
metrics
/
{metric_id}
/
prompts
/
{version}
{
  "request_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "success",
  "prompt": {
    "version": 1,
    "content": "Assign a score of 1 for a funny response, 0 for a boring response.",
    "created_at": "2025-01-01T12:34:56.789Z",
    "updated_at": "2025-01-01T12:34:56.789Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

metric_id
string
required

The ID of the metric to get the prompt for.

version
integer
required

The version of the prompt to get.

Required range: x > 0

Response

200
application/json
Successful Response

A response containing a retrieved prompt.

request_id
string
required

The ID of the request the response is for.

Example:

"123e4567-e89b-12d3-a456-426614174000"

prompt
object
required

The prompt retrieved.

status
string
default:success
Allowed value: "success"