Skip to main content
GET
/
v1
/
manage
/
apikey
/
{id}
Get API key
curl --request GET \
  --url https://api-v2.requesty.ai/v1/manage/apikey/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "logging": true,
  "monthly_spend": 123,
  "monthly_limit": 123,
  "permissions": {
    "manage": "none",
    "completions": "none"
  }
}

Documentation Index

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

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

Get information about a specific API key. Use self as the ID to query the calling API key. An API key can query about itself, or about other keys in the same organization if it has manage read permissions.

Authorizations

Authorization
string
header
required

API key for authentication

Path Parameters

id
string
required

The UUID of the API key to retrieve, or 'self' to query the calling API key

Response

Successfully retrieved API key information

id
string<uuid>
required

The unique identifier of the API key

name
string
required

The name of the API key

logging
boolean
required

Whether logging is enabled for this API key

monthly_spend
number<decimal>
required

The amount spent by this API key in the current month

monthly_limit
number<decimal>
required

The monthly spending limit for this API key (0 means unlimited)

permissions
object
required
Last modified on May 9, 2026