AI Search Tracking API Quickstart

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.

Step 1: Create an API key

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_...

Step 2: Make your first request

Use your key to fetch your project details:

curl https://app.sellm.io/api/v1/project \
  -H "Authorization: Bearer sellm_your_api_key_here"

Step 3: Confirm success

A successful response returns your project details:

{
  "data": {
    "id": "proj_abc123",
    "name": "My Project",
    "competitors": ["competitor-a.com", "competitor-b.com"]
  }
}

Step 4: Explore common workflows

For full endpoint details, head to the API Reference.