Skip to main content
GET
/
v1
/
runs
/
{runId}
Get Run
curl --request GET \
  --url https://api.agentmark.co/v1/runs/{runId} \
  --header 'Authorization: <api-key>' \
  --header 'X-Agentmark-App-Id: <x-agentmark-app-id>'
{
  "run": {
    "id": "run-abc123",
    "experimentId": "exp-abc123",
    "input": {
      "text": "I love this!"
    },
    "output": "positive",
    "expectedOutput": "positive",
    "passed": true,
    "latencyMs": 823.5,
    "createdAt": "2026-04-10T15:30:45.123Z"
  }
}

Authorizations

Authorization
string
header
required

Your AgentMark API key. Create one in the dashboard under Settings > API Keys.

Example: Authorization: Bearer am_live_abc123

Headers

X-Agentmark-App-Id
string
required

Your application ID. Found in the dashboard under Settings > General.

Example:

"app_abc123"

Path Parameters

runId
string
required

The run ID to retrieve.

Response

The run with its results.

run
object