Skip to main content
POST
/
api
/
career-sites
/
feed
Retrieve a bulk feed of newly discovered career sites
curl --request POST \
  --url https://connect.jobo.world/api/career-sites/feed \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "industries": [
    "<string>"
  ],
  "company_sizes": [
    "<string>"
  ],
  "country_codes": [
    "<string>"
  ],
  "funding_stages": [
    "<string>"
  ],
  "company_types": [],
  "founded_after": 123,
  "is_agency": true,
  "updated_after": "2023-11-07T05:31:56Z",
  "cursor": "<string>",
  "batch_size": 50
}
'
{
  "career_sites": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "website": "<string>",
      "logo_url": "<string>",
      "summary": "<string>",
      "industries": [
        "<string>"
      ],
      "linkedin_url": "<string>",
      "crunchbase_url": "<string>",
      "ats": "<string>",
      "listing_url": "<string>",
      "details_url": "<string>"
    }
  ],
  "next_cursor": "<string>",
  "has_more": true
}

Documentation Index

Fetch the complete documentation index at: https://jobo.world/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

API key provided by Jobo

Body

application/json

Filters for the career-sites feed. All fields are optional; omit the body for an unfiltered feed of all newly discovered career sites.

industries
string[] | null

Industry tags. OR-match across the list.

company_sizes
string[] | null

Size bands, e.g. "1-10", "11-50", "51-200".

country_codes
string[] | null

ISO 3166-1 alpha-2 country codes.

funding_stages
string[] | null

Funding stages, e.g. "seed", "series_a".

company_types
enum<string>[] | null
Available options:
for_profit,
non_profit
founded_after
integer | null

Only career sites whose company was founded in or after this year.

is_agency
boolean | null

Restrict to agency (true) or non-agency (false) companies.

updated_after
string<date-time> | null

Only career sites whose updated_at is strictly greater than this UTC timestamp.

cursor
string | null
batch_size
integer
default:50
Required range: 1 <= x <= 50

Response

Batch of career sites with cursor for next page

career_sites
object[]

Career sites in this batch.

next_cursor
string | null
has_more
boolean