AdminList tracked aggregates

List tracked aggregates

Lists rows from the aggregate registry (newest-updated first) with an optional type filter and q id-substring search. Requires dual admin auth (X-Admin-API-Key + JWT with an allowed email domain).

curl -X GET "https://api.spkey.co/admin/aggregates?type=example_string&q=example_string&limit=42&offset=null" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "total": 3.14,
  "limit": 3.14,
  "offset": 3.14,
  "knownTypes": [
    {
      "type": "example_string",
      "label": "example_string",
      "binding": "example_string"
    }
  ],
  "aggregates": [
    {
      "aggregateType": "example_string",
      "aggregateId": "example_string",
      "doId": "null",
      "orgId": "null",
      "createdAt": "example_string",
      "updatedAt": "example_string"
    }
  ]
}
GET
/admin/aggregates
GET
Base URLstring

Target server for requests. Edit to use your own host.

⚠️Authentication configuration error - security schemes not found
query
typestring

Filter by aggregate type or slug.

query
qstring

Case-insensitive substring match on aggregate id.

query
limitinteger
Min: 1 • Max: 200
Request Preview
Response

Response will appear here after sending the request

Query Parameters

typestring

Filter by aggregate type or slug.

qstring

Case-insensitive substring match on aggregate id.

Responses

totalnumber
Required
limitnumber
Required
offsetnumber
Required
knownTypesarray
Required
aggregatesarray
Required