Skip to main content
GET
/
jobs
/
{jobId}
Get
curl --request GET \
  --url https://api.mapademics.com/v1/jobs/{jobId} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "organizationId": "<string>",
  "employerId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "jobDescriptionHref": "<string>",
  "locations": [
    {
      "type": "location",
      "locationId": "new-york-ny"
    }
  ],
  "salaryMin": 123,
  "salaryMax": 123,
  "onetSocCode": "<string>",
  "skills": [
    {
      "skillId": "<string>",
      "skillName": "<string>",
      "level": 3,
      "confidence": 0.5
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "deletedAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

jobId
string
required

Unique identifier for the job

Response

Job retrieved successfully

id
string
required
organizationId
string
required
name
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
employerId
string | null
description
string | null
jobDescriptionHref
string<uri> | null
locations
object[]
salaryMin
integer | null
salaryMax
integer | null
onetSocCode
string | null
skills
object[]

Extracted skills from job description

deletedAt
string<date-time> | null