Skip to main content
POST
/
accounts
/
company_hiring
curl --request POST \
  --url https://app.prontohq.com/api/v2/accounts/company_hiring \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "company_domain": "notion.so"
}
'
{
  "total_jobs": 1,
  "jobs": [
    {
      "job_title": "Senior Backend Engineer",
      "job_url": "https://example.com/jobs/1",
      "job_location": "Paris France",
      "employment_statuses": [
        "full_time"
      ],
      "date_posted": "2026-05-30",
      "description": "Build cool stuff with Rails.",
      "hiring_team": [
        {
          "name": "Alice Doe",
          "title": "Engineering Manager",
          "linkedin_url": "https://linkedin.com/in/alice"
        }
      ],
      "company": {
        "name": "Acme",
        "domain": "acme.com",
        "linkedin_url": "https://linkedin.com/company/acme"
      }
    }
  ]
}
Get the list of open job postings indexed for a company using one company identifier (domain, company name, or LinkedIn URL). Results are sourced from TheirStack.

Credits and rate limits

  • Credits: 3 credits per request
  • Rate limit: 20 requests per second per user

Required identification

Provide at least one of:
  • company_domain
  • company_name
  • company_linkedin_url
If none are provided, the API returns:
{
  "error": 400,
  "message": "Provide at least one of: company_domain, company_name, company_linkedin_url"
}

Optional parameters

  • posted_within_days: Only return jobs posted within the last N days

Example request

{
  "company_domain": "notion.so",
  "posted_within_days": 30
}

Example response

{
  "total_jobs": 1,
  "jobs": [
    {
      "job_title": "Senior Backend Engineer",
      "job_url": "https://example.com/jobs/1",
      "job_location": "Paris France",
      "employment_statuses": ["full_time"],
      "date_posted": "2026-05-30",
      "description": "Build cool stuff with Rails.",
      "hiring_team": [
        {
          "name": "Alice Doe",
          "title": "Engineering Manager",
          "linkedin_url": "https://linkedin.com/in/alice"
        }
      ],
      "company": {
        "name": "Acme",
        "domain": "acme.com",
        "linkedin_url": "https://linkedin.com/company/acme"
      }
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Your API key

Body

application/json
company_domain
string

Company website domain

Example:

"notion.so"

company_name
string

Company name

Example:

"Notion"

company_linkedin_url
string<uri>

LinkedIn company URL

Example:

"https://www.linkedin.com/company/notionhq/"

posted_within_days
integer

Only return jobs posted within the last N days

Example:

30

Response

Successfully retrieved job postings

total_jobs
integer

Total number of matching job postings

Example:

1

jobs
object[]

List of job postings