Creating API Key
Most Cryptix API requests must be authenticated using an API key. You can create an API key on the settings page after creating a Cryptix account.
How to create
- Log in to Cryptix.
- Open Settings > API Keys.
- Click Create New Key.
Authenticated API requests must be made with the Authorization: Bearer <token>
header. Your secret API key should be passed as the value for <token>
.
If authentication fails, a JSON object with an error message is returned with HTTP status 401
.
Example authenticated request:
curl https://api.cryptix.io/v2.0/checkouts \
-H "Authorization: Bearer <Your API Key>"