Skip to main content
GET
/
v1
/
capabilities
Get Capabilities
curl --request GET \
  --url https://api.agentmark.co/v1/capabilities \
  --header 'Authorization: <api-key>' \
  --header 'X-Agentmark-App-Id: <x-agentmark-app-id>'
{
  "capabilities": {
    "traces": true,
    "sessions": true,
    "spans": true,
    "scores": true,
    "metrics": true,
    "datasets": true,
    "experiments": true,
    "prompts": true,
    "runs": true,
    "export": true
  }
}

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"

Response

Server capabilities.

capabilities
object

Map of feature names to availability. Use this to check which endpoints are supported before calling them.

Example:
{
"traces": true,
"sessions": true,
"spans": true,
"scores": true,
"metrics": true,
"datasets": true,
"experiments": true,
"prompts": true,
"runs": true,
"export": true
}