This guide walks you through creating an API key and making your first authenticated request. By the end, you will have confirmed that your key works and be ready to explore the full API.
Open the Sellm dashboard, navigate to Project Settings, and select the API Keys tab. Click Create API Key, give it a name, and copy the key that is generated. Your key will look like sellm_...
Use your key to fetch your project details:
curl https://app.sellm.io/api/v1/project \
-H "Authorization: Bearer sellm_your_api_key_here"
A successful response returns your project details:
{
"data": {
"id": "proj_abc123",
"name": "My Project",
"competitors": ["competitor-a.com", "competitor-b.com"]
}
}
GET /promptsPOST /analysis/triggerGET /analysis/runs/{runId}GET /analysis/runs/{runId}/resultsFor full endpoint details, head to the API Reference.