Endpoint
Authentication
Authenticate with a session cookie or passAuthorization: Bearer <api-key>.
Response
array
List of API keys.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET "https://router.example.com/v1/router/keys" \
-H "Authorization: Bearer <api-key>"
{
"items": [
{
"id": "key_01hv8",
"name": "Production pipeline",
"prefix": "aria_9f3a",
"scopes": ["read", "write"],
"created_at": "2024-06-01T12:00:00Z"
},
{
"id": "key_01hv9",
"name": "Staging agent",
"prefix": "aria_2b7c",
"scopes": ["read"],
"created_at": "2024-06-10T08:30:00Z"
}
]
}
List all API keys registered in the Aria Compute ROUTER. Returns metadata, scopes, and prefix information without exposing full key values.
curl -X GET "https://router.example.com/v1/router/keys" \
-H "Authorization: Bearer <api-key>"
{
"items": [
{
"id": "key_01hv8",
"name": "Production pipeline",
"prefix": "aria_9f3a",
"scopes": ["read", "write"],
"created_at": "2024-06-01T12:00:00Z"
},
{
"id": "key_01hv9",
"name": "Staging agent",
"prefix": "aria_2b7c",
"scopes": ["read"],
"created_at": "2024-06-10T08:30:00Z"
}
]
}
GET /v1/router/keys
Authorization: Bearer <api-key>.
curl -X GET "https://router.example.com/v1/router/keys" \
-H "Authorization: Bearer <api-key>"
{
"items": [
{
"id": "key_01hv8",
"name": "Production pipeline",
"prefix": "aria_9f3a",
"scopes": ["read", "write"],
"created_at": "2024-06-01T12:00:00Z"
},
{
"id": "key_01hv9",
"name": "Staging agent",
"prefix": "aria_2b7c",
"scopes": ["read"],
"created_at": "2024-06-10T08:30:00Z"
}
]
}
Was this page helpful?