Authentication

API Key

The App Quality Copilot API uses API keys to authenticate requests. You can ask for your API keys directly to us. API requests without authentication will fail.

Production secret keys have the prefix rb_live_. Your API key carry many privileges, therefore 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.

Authentication to the API is performed via HTTP Basic Auth. Provide your API key as the basic auth username value. You do not need to provide a password.

You can also Authenticate via bearer auth (e.g., for a cross-origin request), use -H "Authorization: Bearer rb_live_3afBOR7...5UM1ewM" instead of -u rb_live_3afBOR7...5UM1ewM: (note that trailing : when using the -u option in curl).

All API requests must be made over HTTPS. Calls made over plain HTTP will be redirected.

Project ID

Every request to the API requires the Project ID. Project IDs have the prefix proj_ and can be found under the Triggers tab inside the console

Last updated