Skip to main content
GET
/
api-keys
cURL
curl -X GET 'https://admin-api.exa.ai/team-management/api-keys' \
  -H 'x-api-key: YOUR-SERVICE-KEY'
{
  "apiKeys": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "rateLimit": 123
    }
  ]
}

Get your Exa API key

Overview

The List API Keys endpoint returns all API keys associated with your team. This includes the key ID, name, rate limit, and creation timestamp for each key.

Response Format

The response includes an array of API key objects with the following information:
  • id: Unique identifier for the API key
  • name: Human-readable name (if provided during creation)
  • rateLimit: Rate limit in requests per minute (if set)
  • createdAt: ISO 8601 timestamp of when the key was created

Authorizations

x-api-key
string
header
required

Service API key for team authentication

Query Parameters

api_key_id
string<uuid>

Optional API key ID to retrieve a specific key

Response

List of API keys retrieved successfully

  • Option 1
  • Option 2
apiKeys
object[]