Platform
API Authentication
Authenticate your requests to Adaptive
The Adaptive Engine API uses API keys for authentication. You can find your personal API key on the bottom left of the Adaptive UI by clicking your user profile icon.
You can copy your API key from the bottom left of the Adaptive UI.
All API requests should include your API key in an Authorization
HTTP Header as such:
The Adaptive Python SDK allows you configure your API key on instantiation of the Adaptive
client, as such:
Adaptive SDK
You can also set an environment variable $ADAPTIVE_API_KEY
instead of explicitly passing it to the Adaptive
client.
If you are using the OpenAI Python library to make inference requests, you can configure the OpenAI Client as such:
OpenAI Python