Authentication

Caesar uses API keys for authentication. An API key is required to authenticate requests and enable integration with Caesar’s platform.

Get your API key at your dashboard.

Generate a Caesar API key

  1. Visit your dashboard.
  2. Create a new API key.
  3. Click Copy to copy the secret and save it securely. You will not be able to view it again.

Authenticate your requests

Send your API key as a Bearer token in the HTTP Authorization header on every request.

Example Request

JSON
1curl 'https://api.caesar.xyz/research?page=1&limit=25' \
2 -H "Authorization: Bearer $CAESAR_API_KEY" \
3 -H "Accept: application/json"