← All use cases

Extract job listings from Greenhouse job boards

Pull structured job title, location, department, and apply-link data from any company's Greenhouse-hosted careers page.

Example request

curl -X POST https://api.jsonit.io/v1/extract \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://boards.greenhouse.io/anthropic",
    "schema": {
      "type": "object",
      "properties": {
        "jobs": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "department": {
                "type": "string"
              },
              "location": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }'
Get an API keyFull API docs