Skip to main content
GET
/
job
/
{job_id}
/
Get job by 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>",
  "salary": "<string>",
  "requirements": "<any>",
  "description": "<string>",
  "responsibilities": "<any>",
  "benefits": "<any>",
  "status": "<string>"
}

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

The Job ID

Response

id
string
required

The unique identifier for the job entry.

title
string
required

The title of the job as mentioned in the job posting. If not available, a meaningful title would be auto-generated.

Maximum length: 250
company_name
string
required

The name of the company that posted the job.

Maximum length: 250
salary
string
required
status
string
required
job_url
string | null

The URL of the job posting. (optional)

Maximum length: 1000
location
string | null

The location of the job as mentioned in the job posting. (optional)

Maximum length: 100
requirements
any

An array representation of the requirements of the job as mentioned in the job posting. (optional)

description
string | null

The description of the job as mentioned in the job posting. (optional)

Maximum length: 3000
responsibilities
any

An array representation of the responsibilities the candidate would be undertaking as mentioned in the job posting. (optional)

benefits
any

An array representation of the benefits the candidate would get as mentioned in the job posting. (optional)