For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication

ApiKeyAuth

All API requests must include the API key. You have to pass it in the request header with the x-api-key parameter.

Header parameter name: x-api-key

BearerAuth

There are some API requests that a session token can be used instead of an API key such as fetching a checkout order. You have to pass it in the request header with Authorization: Bearer parameter.

This authorization method is intended for client applications (frontend) where this token is generated on request and is not secure to use an API key.

HTTP Authorization Scheme: Bearer

Format: "JWT"

Last updated