Skip to content
AXIFI.
Getting Started

Authentication

The AXIFI API uses API keys to authenticate requests. You can view and manage your API keys in the Developer Dashboard.

API Key Format

Your API key will look like this:

axifi_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

API keys start with axifi_sk_ followed by a unique identifier.

Making Authenticated Requests
Include your API key in the Authorization header
HTTP Header
Authorization: Bearer YOUR_API_KEY

Example Request

cURL
curl https://api.axifi.ai/v1/compounds \
  -H "Authorization: Bearer axifi_sk_your_key_here"
API Key Scopes
API keys can have different permission levels based on your plan
read:compoundsAccess compound database
read:documentsAccess research documents
write:chatCreate chat completions
write:toolsUse analysis tools
read:searchPerform semantic search
admin:webhooksManage webhooks (Pro+)
Hi!