Skip to main content

Get started in three steps

Learn how to authenticate and make your first API request to Stover.

Step 1: Get your API key

  1. Log in to your Stover Dashboard
  2. Navigate to Settings > API Keys
  3. Click Generate New Key
  4. Copy your API key (it starts with stover_pk_)
Store your API key securely. It will only be shown once.

Step 2: Make your first request

Use your API key to create a new contact:
curl -X POST https://api.stover.app/v1/contacts \
  -H "Authorization: Bearer stover_pk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "[email protected]",
    "company": "Acme Inc",
    "utm_source": "website",
    "utm_medium": "contact_form"
  }'
A successful response returns the created contact:
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "[email protected]",
    "company": "Acme Inc",
    "utm_source": "website",
    "utm_medium": "contact_form",
    "created_at": "2024-01-15T10:30:00Z"
  }
}

Step 3: Explore the API

Now that you’ve made your first request, explore the full API:

Next steps

Need help? Contact us at [email protected].