Skip to main content
GET
/
v1
/
scores
List Scores
curl --request GET \
  --url https://api.agentmark.co/v1/scores \
  --header 'Authorization: <api-key>' \
  --header 'X-Agentmark-App-Id: <x-agentmark-app-id>'
{
  "scores": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "quality",
      "score": 0.95,
      "label": "high_quality",
      "reason": "Response addresses all user requirements clearly.",
      "type": "llm_eval",
      "resourceId": "span_abc123",
      "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"

Query Parameters

resourceId
string
required

The span or trace ID to retrieve scores for.

Response

A list of scores for the resource.

scores
object[]