GET
/
api
/
v1
/
key
cURL
curl --request GET \
  --url https://labs.tacitintelligence.co/api/v1/key \
  --header 'Authorization: Bearer <token>'
{
  "key_id": "<string>",
  "name": "<string>",
  "expires_at": "<string>",
  "rate_limits": [
    {
      "limit": 123,
      "remaining": 123,
      "reset": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API key obtained from Labs Portal

Response

Success

key_id
string
required

Unique key identifier

name
string | null

Human-readable key name

expires_at
string | null

ISO 8601 timestamp when key expires, or null if no expiration

rate_limits
object[] | null

All rate limits configured on this key, in Unkey order