Skip to main content
GET
/
v1
/
score-configs
List score configs
curl --request GET \
  --url https://api.agentmark.co/v1/score-configs \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Agentmark-App-Id: <api-key>'
{
  "data": [
    {
      "commit_sha": "<string>",
      "data_type": "boolean",
      "id": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ],
  "pagination": {
    "limit": 1,
    "offset": 1,
    "total": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.agentmark.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Agentmark-App-Id
string
header
required

Application ID for tenant scoping

Authorization
string
header
required

API key (sk_agentmark_*)

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 1000
offset
integer | null
default:0
Required range: x >= 0

Response

Paginated list of score configs.

data
object[]
required
pagination
object
required