Jobs

This endpoint allows retrieving job posts for a given filter. It can be scoped to a particular organization or not.

Calls to this endpoint consume credits, the cost of a particular request depends on the number of jobs retrieved. Each job costs 3 credits.

Find job listings

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
organizationany ofOptional

Organization to enrich

or
or
or
nullOptional
filtersany ofRequired

Filters to apply to the jobs search. Can be either a Filters object or a Query object.

or
limitinteger · min: 1 · max: 100Optional

Maximum number of people to return

Default: 10
offsetinteger · max: 10000Optional

Number of results to skip

Default: 0
Responses
200

Successful Response

application/json
post
/v3/jobs/find
POST /v3/jobs/find HTTP/1.1
Host: api.sumble.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 149

{
  "organization": {
    "domain": "sumble.com"
  },
  "filters": {
    "technologies": [
      "python",
      "react"
    ],
    "technology_categories": [
      "cybersecurity"
    ],
    "since": "2025-01-01"
  }
}
{
  "id": "0199f266-e046-797b-aa59-a3d3097e6694",
  "credits_used": 3,
  "credits_remaining": 9858,
  "jobs": [
    {
      "id": 85817801,
      "organization_id": 1726684,
      "organization_name": "Sumble",
      "organization_domain": "sumble.com",
      "job_title": "frontend engineer",
      "datetime_pulled": "2025-09-23T06:16:05.231145Z",
      "primary_job_function": "Frontend Engineer",
      "location": "United States",
      "teams": "",
      "matched_technologies": "Python, React",
      "description": "Sumble is building a knowledge graph from web data with a first focus on data for go-to-market teams. We use sources like job posts and resume data to identify things like org structure, tech stack, and key projects (e.g., GenAI initiatives, cloud migrations). Our product already has strong product-market fit, early revenue, and happy customers — and now we're ready to accelerate.\n\nOur long-term vision is to become the primary destination for accessing high-quality web data. Try the product at sumble.com.\n\nOur Team\n\nWe are a team of 15, including 10 engineers with experience at companies such as Google, Meta, Stack Overflow, and Kaggle.\n\nWhat we are looking for:\n\n• Someone who has strong expertise in one or more of the following areas, with the ability/interest to:\n• Experience developing software applications using frontend technologies such as modern JavaScript frameworks, such as React and Typescript and CSS frameworks\n• Some skills with backend technologies\n\n\nOur Tech Stack:\n\n• Languages & Frameworks: Python, FastAPI, React, Typescript\n• Cloud Platform: Google Cloud Platform (GCP)\n• Databases: PostgreSQL, AlloyDB\n• ML/Data: PyTorch, Huggingface, vLLM, Skypilot, Marimo, Prefect\n• Infrastructure: Cloud Run\n• Design: Figma, Vercel V0\n\n\nChallenges We Tackle:\n\n• Transforming noisy datasets into high-quality data products\n• Running expensive analytics computations efficiently\n• Managing the complexity of a growing number of data sources, machine learning models, and large data operations\n• Creating a user experience that allows both powerful high-level aggregations AND allows users to also see the granular underlying source data\n\n\nRequirements\n\n• Located within Americas timezones\n\n\nBenefits\n\n• Medical, dental, and vision (US)\n• 401k (US)\n• Target 4 weeks PTO",
      "url": "https://sumble.com/l/job/M6KG6K3aQ3"
    }
  ],
  "total": 1
}

Last updated