Skip to main content
GET
/
jobs
/
{id}
Get Job
curl --request GET \
  --url https://api.kardow.com/jobs/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>",
    "description": "<string>",
    "company_name": "<string>",
    "company_logo_url": "<string>",
    "slug": "<string>",
    "location": "<string>",
    "job_type": "<string>",
    "status": "<string>",
    "is_remote": true,
    "contact_email": "jsmith@example.com",
    "category": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://kardow.com/docs/llms.txt

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

Returns full details for a specific job, including its category name and proxied logo URL.

Path Parameters

id
string
required
The job UUID.

Examples

cURL
curl --request GET \
  --url "https://api.kardow.com/jobs/550e8400-e29b-41d4-a716-446655440000" \
  --header "x-api-key: your-api-key-here"

Response

data
object
The full job object including id, title, description, company_name, location, job_type, is_remote, status, salary_min, salary_max, slug, category, created_at, updated_at, and more.

Authorizations

x-api-key
string
header
required

API key for authentication. Get yours from Settings > API Keys in the Kardow dashboard.

Path Parameters

id
string<uuid>
required

Job UUID.

Response

Success

data
object
required