GET
/
job
/
{job_id}
/
curl --request GET \
  --url https://api.letraz.app/api/v1/job/{job_id}/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "<string>",
  "job_url": "<string>",
  "title": "<string>",
  "company_name": "<string>",
  "location": "<string>",
  "currency": "<string>",
  "salary_max": 4611686018427388000,
  "salary_min": 4611686018427388000,
  "requirements": "<any>",
  "description": "<string>",
  "responsibilities": "<any>",
  "benefits": "<any>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

job_id
string
required

Response

200
application/json

The response is of type object.