Skip to main content
GET
/
api
/
v1
/
keys
/
{keyId}
Get full details for one API key
curl --request GET \
  --url https://socdefenders.ai/api/v1/keys/{keyId} \
  --cookie sb-access-token=
{
  "data": {
    "id": "00000000-0000-4000-8000-000000000123",
    "key_prefix": "sk_live_zIc8",
    "name": "Production SIEM",
    "tier": "pro",
    "scopes": [
      "read:iocs",
      "read:articles",
      "read:articles:export",
      "read:stix"
    ],
    "rate_limit_per_minute": 1000,
    "rate_limit_per_day": 1000000,
    "total_requests": 142587,
    "last_used_at": "2026-05-17T09:42:11Z",
    "created_at": "2026-01-15T10:00:00Z",
    "expires_at": null,
    "revoked_at": null,
    "allowed_ips": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.socdefenders.ai/llms.txt

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

Authorizations

sb-access-token
string
cookie
required

Session cookie (for API key management endpoints)

Path Parameters

keyId
string<uuid>
required

API key ID (UUID)

Example:

"00000000-0000-4000-8000-000000000123"

Response

API key details. Full secret is never returned (only the prefix).

data
object