Authentication
All Revision API requests require authentication using an API key from your organization.
Using your API Key
Include your API key in requests using the Authorization header with Bearer token:
Authorization: Bearer your-api-key-here
Finding your API Key
To get your organization's API key:
- Navigate to Settings in your Revision workspace
- Go to Organization settings
- Find the API Key section
- Copy your organization's API key
Example Request
curl -X GET \
https://your-organization.revision.app/api/external/component \
-H "Authorization: Bearer your-api-key-here" \
-H "Content-Type: application/json"
All requests must be made over HTTPS.