Skip to main content
GET
/
api
/
datastores
/
{datastoreId}
/
api-keys
curl -X GET https://app.horneross.com/api/datastores/ds_abc123/api-keys \
  -H "Authorization: Bearer sk_live_xxx"
[
  {
    "id": "apikey_123",
    "key": "ds_key_abc123xyz",
    "createdAt": "2024-01-15T10:00:00Z"
  }
]

Endpoint

GET /api/datastores/{datastoreId}/api-keys

Path Parameters

datastoreId
string
required
ID del datastore

Headers

Authorization
string
required
Bearer token con tu API key. Formato: Bearer sk_live_xxx
curl -X GET https://app.horneross.com/api/datastores/ds_abc123/api-keys \
  -H "Authorization: Bearer sk_live_xxx"

Response

data
array
Lista de API keys
[
  {
    "id": "apikey_123",
    "key": "ds_key_abc123xyz",
    "createdAt": "2024-01-15T10:00:00Z"
  }
]