API

Build powerful integrations to enrich organization data and discover key business contacts.

Overview

The Sumble API is a RESTful service that provides programmatic access to our comprehensive business intelligence platform. Whether you're enriching existing CRM data, building lead generation tools, or conducting market research, our API delivers accurate business information at scale.

Key Capabilities

  • Organization Enrichment - Enhance your records with firmographic data, technographics, and company insights

  • People Discovery - Find decision-makers, validate contacts, and access professional profiles

Getting Started

Authentication

All API requests require authentication using an API key.

  1. Generate your API key at https://sumble.com/account/api-keys

  2. Include the key in all requests as a Bearer token in the Authorization header:

curl https://api.sumble.com/v1/organizations/enrich \
  --request POST \
  --header "Authorization: Bearer $API_KEY" \
  --header 'Content-Type: application/json' \
  --data '{
    "organization": {
      "domain": "sumble.com"
    },
    "technologies": [
      "python"
    ]
  }'

Rate Limits

API usage is subject to rate limiting to ensure service stability. Each user can do 10 requests per second (aggregated through all the endpoints), allowing occasional bursts.

Once the rate limit is reached, the API responds with response code 429.

Last updated