Skip to Content
DocsAPI Tokens

API Tokens

Generate and manage API tokens for programmatic access to Rhesis. You can manage them at app.rhesis.ai/tokens .

What are API Tokens? API Tokens authenticate programmatic access to Rhesis via the REST API or Python SDK. The token is shown only once at creation — copy it immediately.

Token Overview

Using API Tokens

With REST API

Include the token in the Authorization header:

Terminal
curl -H "Authorization: Bearer YOUR_TOKEN_HERE" \
https://api.rhesis.com/v1/tests

With Python SDK

Initialize the SDK with your token:

client.py
from rhesis import RhesisClient

client = RhesisClient(api_token="YOUR_TOKEN_HERE")

See Python SDK for complete usage documentation.