Colabra REST API
  • Introduction
  • Authentication
  • Rate limits
  • Status and error codes
  • Resources
    • Comments
    • Events
    • Tasks
    • Projects
Powered by GitBook
On this page

Authentication

All REST queries require a valid Colabra API key starting with the sk_ prefix.

Create an Internal integration in Workspace Settings → Integrations to generate a new API key.

Include your key as a X-Colabra-Api-Key header on all API queries.

curl -X GET \ https://api.colabra.ai/2024-01/experiments \
  -H 'Content-Type: application/json' \
  -H 'X-Colabra-Api-Key: {sk_api_key}'

Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.

PreviousIntroductionNextRate limits

Last updated 2 months ago