API Authentication

Every request to the Sellm API must include a valid project-scoped API key. Keys are created through the dashboard and are tied to a single project.

Sending your key

Include your API key in the Authorization header using the Bearer scheme:

Authorization: Bearer sellm_your_api_key_here

This header must be present on every request. Requests without a valid key receive a 401 Unauthorized response.

Key format

Security best practices

Verifying your key

The simplest way to confirm that a key is valid is to call GET /project. A 200 response with your project details means the key is active and correctly configured.

Common authentication errors