Skip to main content
GET
/
jobs
List jobs
curl --request GET \
  --url https://hireloam.com/api/v1/jobs \
  --header 'Authorization: Bearer <token>'
{
  "jobs": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "title": "Senior Software Engineer",
      "status": "published",
      "department": "Engineering",
      "location": "San Francisco, CA",
      "employment_type": "full_time",
      "public_slug": "senior-software-engineer",
      "created_at": "2024-01-15T10:30:00Z",
      "stages": [
        {
          "id": "stage-1",
          "name": "Inbox",
          "order_index": 0
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key from Settings > API Keys

Query Parameters

status
enum<string>

Filter jobs by status

Available options:
published,
draft,
closed

Response

List of jobs

jobs
object[]