Organizations
Enrich an organization with technology data. When providing technology categories, all the technologies in those categories will be used.
Successful calls to this endpoint consume API credits from your account. The number of credits used depends on the number of technologies found. Each technology found costs 5 credits.
Authorizations
Body
organizationany ofRequired
Organization to enrich
or
or
technologiesstring[]OptionalDefault:
Technologies to search for (use technology slugs)
[]
technology_categoriesstring[]OptionalDefault:
Technology categories to search for (use category slugs)
[]
sinceany ofOptional
Only consider data since this date. Format: YYYY-MM-DD
stringOptional
nullOptional
Responses
200
Successful Response
application/json
422
Validation Error
application/json
post
POST /v1/organizations/enrich HTTP/1.1
Host: api.sumble.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 137
{
"organization": {
"domain": "sumble.com"
},
"technologies": [
"python",
"react"
],
"technology_categories": [
"cybersecurity"
],
"since": "2025-01-01"
}
{
"id": "01998090-e970-732b-9d68-740f1a830902",
"credits_used": 10,
"credits_remaining": 69258,
"organization": {
"id": 1726684,
"slug": "sumble",
"name": "Sumble",
"domain": "sumble.com"
},
"technologies_found": "Python, React",
"technologies_count": 2,
"source_data_url": "https://sumble.com/l/org/fa82oqKqXpW",
"technologies": [
{
"name": "Python",
"last_job_post": "2025-09-23",
"jobs_count": 1,
"jobs_data_url": "https://sumble.com/l/org/t5BLxGT4tLs/jobs",
"people_count": 0,
"people_data_url": "https://sumble.com/l/org/t5BLxGT4tLs/people",
"teams_count": 1,
"teams_data_url": "https://sumble.com/l/org/t5BLxGT4tLs/teams"
},
{
"name": "React",
"last_job_post": "2025-09-23",
"jobs_count": 1,
"jobs_data_url": "https://sumble.com/l/org/8nQuDcManoc/jobs",
"people_count": 0,
"people_data_url": "https://sumble.com/l/org/8nQuDcManoc/people",
"teams_count": 1,
"teams_data_url": "https://sumble.com/l/org/8nQuDcManoc/teams"
}
]
}
Last updated