For the complete documentation index, see llms.txt. This page is also available as Markdown.

Organization tech stack

Retrieve the confirmed-used tech stack for a single organization

Retrieve an organization's confirmed-used technology stack, grouped by business function and technology category — the same grouping and ranking used by the Tech Stack Overview page on sumble.com. Use this endpoint when you already have the Sumble organization id and want to know what an organization actually runs in production, not merely what its job posts or employee profiles mention in passing.

This is different from filtering the Organizations endpoint by technology, or reading its job_post_count metric — both of those match on any mention. This endpoint restricts to technologies Sumble has confirmed are actually in use.

Input

Pass the Sumble organization id in the URL path:

curl https://api.sumble.com/v9/organizations/1726684/techs \
  --header "Authorization: Bearer $API_KEY"

The endpoint does not accept a request body. If the organization does not exist, the API returns HTTP 404.

Response

The response contains a business_functions array in the same display order as the Tech Stack Overview page. Each business function contains up to five categories, ranked by confirmed-use evidence. Business functions without detected technologies are returned with an empty categories array.

Each category includes a category_slug, category_name (short), and category_name_full, plus:

  • technologies — the confirmed-used, top-tier ("primary") technologies Sumble found for that category at this organization. Each technology includes its name, slug, a job_post_used_count (the number of job posts confirming active use, not mere mentions), and its domain when known.

  • evidence — the full ranked list of every confirmed-used technology detected in that category (a superset of technologies), each as {name, job_post_used_count}. Use this for the complete picture rather than just the headline picks.

Categories without confirmed-used technologies are omitted.

Credit cost

1 credit per technology returned in technologies (summed across all returned business functions and categories). Organizations with no confirmed-used technologies do not consume credits.

Get organization tech stack

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organization_idintegerRequired
Responses
200

Successful Response

application/json
idstring · uuidRequired
credits_usedintegerRequired
credits_remainingintegerRequired
organization_idintegerRequired
organization_slugstringRequired
get/v9/organizations/{organization_id}/techs
GET /v9/organizations/{organization_id}/techs HTTP/1.1
Host: api.sumble.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "019c2a87-11f0-78b3-b82d-cdd178cf4018",
  "credits_used": 1,
  "credits_remaining": 999,
  "organization_id": 1726684,
  "organization_slug": "vanta",
  "business_functions": [
    {
      "business_function": "Engineering & R&D",
      "categories": [
        {
          "category_slug": "cloud-vendor",
          "category_name": "Cloud",
          "category_name_full": "Cloud Vendor",
          "technologies": [
            {
              "name": "Amazon Web Services",
              "slug": "aws",
              "job_post_used_count": 42,
              "domain": "aws.amazon.com"
            }
          ],
          "evidence": [
            {
              "name": "Amazon Web Services",
              "job_post_used_count": 42
            },
            {
              "name": "Google Cloud Platform",
              "job_post_used_count": 3
            }
          ]
        }
      ]
    }
  ]
}

Last updated