Skip to main content
GET
/
api-keys
/
{id}
Get a specific API key
curl -X GET 'https://admin-api.exa.ai/team-management/api-keys/{id}' \
  -H 'x-api-key: YOUR-SERVICE-KEY'
{
  "apiKey": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "rateLimit": 123,
    "teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Get your Exa API key

Overview

The Get API Key endpoint allows you to retrieve detailed information about a specific API key using its unique identifier.

Path Parameters

  • id: The unique identifier of the API key to retrieve

Response

Returns detailed information about the API key including:
  • id: Unique identifier
  • name: Descriptive name
  • rateLimit: Rate limit in requests per minute (if set)
  • teamId: Team ID this key belongs to
  • createdAt: When the key was created

Authorizations

x-api-key
string
header
required

Service API key for team authentication

Path Parameters

id
string<uuid>
required

The unique identifier of the API key

Response

API key retrieved successfully

apiKey
object