On this page

Quickstart

1. Get an API key

  1. Open app.scaliq.ai/api-mcp
  2. Create a key (shown once)
  3. Use a sk_live_… key

Paid plan required. Free/trial cannot use the API.

2. Check credits

export SCALIQ_API_KEY="sk_live_..."

curl -s https://api.scaliq.ai/public/v1/credits \
  -H "X-API-Key: $SCALIQ_API_KEY"
{
  "credits": 842,
  "topUpCredits": 200,
  "planId": "pro"
}

3. Add a lead

Replace CAMPAIGN_ID with a campaign id from GET /campaigns or the dashboard.

curl -s https://api.scaliq.ai/public/v1/campaigns/CAMPAIGN_ID/leads \
  -H "X-API-Key: $SCALIQ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "linkedinUrl": "https://www.linkedin.com/in/jane-doe/",
    "fullName": "Jane Doe",
    "jobTitle": "VP Sales",
    "companyName": "Acme"
  }'

Successful insert charges 1 credit and returns "status": "created".

Bases

REST base: https://api.scaliq.ai/public/v1

Prefer agents?

See MCP for Cursor connect, or Connect Claude / ChatGPT for Claude / ChatGPT. You can paste https://mcp.scaliq.ai/ into an LLM for a short overview before creating a key.

More examples