Skip to main content
GET
/
v1
/
manage
/
apikey
Get all API keys
curl --request GET \
  --url https://api-v2.requesty.ai/v1/manage/apikey \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "monthly_limit": 123,
      "monthly_spend": 123,
      "permissions": {
        "manage": "none",
        "completions": "none"
      },
      "labels": {},
      "created_by": {
        "id": "<string>",
        "email": "<string>"
      }
    }
  ]
}
List all API keys in your organization. Returns information about each API key including its ID, name, limits, permissions, labels, and creator.

Authorizations

Authorization
string
header
required

API key for authentication

Response

Successfully retrieved API keys

keys
object[]
required