Get started with Sumble
Go from account creation to your first organization search and API call in under 10 minutes. This guide walks you through every step.
5
Make your first API call
curl https://api.sumble.com/v9/organizations \
--request POST \
--header "Authorization: Bearer $YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data @- <<'EOF'
{
"filter": {
"query": "technology EQ 'react'"
},
"select": {
"attributes": [
"employee_count",
"industry",
"headquarters_country",
"jobs_count"
]
},
"limit": 10,
"order_by_column": "employee_count",
"order_by_direction": "DESC"
}
EOF{
"id": "0199f400-4123-7eca-9082-be2c94676bfc",
"credits_used": 50,
"credits_remaining": 9850,
"total": 48291,
"organizations": [
{
"attributes": {
"id": 1726684,
"name": "Acme Corp",
"slug": "acme-corp",
"url": "acme.com",
"sumble_url": "https://sumble.com/l/org/TH2y9mGkRr1q",
"employee_count": 320,
"industry": "Information",
"headquarters_country": "US",
"jobs_count": 42
},
"entities": []
}
],
"source_data_url": "https://sumble.com/l/search/Xa1b2C3d4E5f"
}Last updated