1. 🔍 Keyword To Lead
  • ⚡ Essentials
    • Introduction
    • Getting Started
    • Authentication
    • Rate Limit
  • 🔍 Keyword To Lead
    • List Building
      POST
    • List Result
      POST
    • Count Building
      POST
    • Count Result
      POST
  • 👤 Lead Resolution
    • Enrichment
      POST
    • Deanonymization
      POST
    • Linkedin to Phone
      POST
    • Linkedin to HEM
      POST
    • Email to HEM
      POST
    • IP to Company
      POST
  1. 🔍 Keyword To Lead

Count Building

POST
https://api.lead.springbolt.app/resolve/keyword_to_lead/count
Plan campaigns with confidence. Keyword-to-Lead Count returns the volume of resolvable hashed-email leads for any keyword batch in seconds, so media buyers and SDR leaders can validate audience size, refine keyword strategy, and forecast pipeline before committing to a full enrichment run. Ideal for testing competitor terms, evaluating long-tail keywords, and right-sizing ad spend.

Request

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Domain resolved successfully
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.lead.springbolt.app/resolve/keyword_to_lead/count' \
--header 'Content-Type: application/json' \
--data '{
  "keywords": [
    "b2b intent",
    "hvac services"
  ],
  "cities": [
    "Austin",
    "Dallas"
  ],
  "states": [
    "TX"
  ],
  "zips": [
    "73301",
    "75001"
  ],
  "lead_type": "b2b",
  "date_start": "2026-06-18",
  "date_end": "2026-06-25",
  "callback_url": "https://your-webhook-url.com/callback"
}'
Response Response Example
{
    "success": true,
    "message": "Resolution successfully completed!",
    "resolution": {
        "id": "res_a12fY536bY4860Y8d52Y8e822afdf503",
        "status": "completed",
        "requested_at": "2026-06-22T18:00:35.440Z",
        "callback_url": "https://your-webhook-url.com/callback"
    },
    "result": {
        "input": {
            "keywords": [
                "b2b intent",
                "hvac services"
            ],
            "date_start": "2026-06-17T00:00:00.000Z",
            "date_end": "2026-06-22T00:00:00.000Z",
            "lead_type": "B2B",
            "cities": [
                "Austin",
                "Dallas"
            ],
            "states": [
                "TX"
            ],
            "zips": [
                "73301",
                "75001"
            ],
            "deanonymize": false
        },
        "count": {
            "emails_hashed": 97,
            "by_keyword": [
                {
                    "keyword": "b2b intent",
                    "emails_hashed": 35
                },
                {
                    "keyword": "hvac services",
                    "emails_hashed": 62
                }
            ]
        }
    }
}
Previous
List Result
Next
Count Result
Built with