indeed

FREEMIUM
Por Mantiks | Actualizada a month ago | Data
Popularidad

9.7 / 10

Latencia

11,693ms

Nivel de servicio

94%

Health Check

N/A

Volver a todos los tutoriales (2)

Search and retrieve jobs' information

Choose a locality

First of all you need to choose a locality.
A locality correspond to a specific indeed sub-domain and country. For instance ‘fr’ corresponds to https://fr.indeed.com domain and will restrict our requests to this domain.

Search for jobs

In this example we are going to request jobs that match manager in Chicago in the us locality (Because Chicago is a US city).
Those parameters could be send to the API through this query:

/jobs/search?locality=us&query=manager&location=Chicago

This query will return jobs that hits our criteria. We can retrieve the next batch of jobs with the ‘page_id’ parameters:

/jobs/search?locality=us&query=manager&location=Chicago&page_id=2

And so one, until the query return an empty array of results.

Retrieve job’s information

Now that we have a list of jobs ids we can use them to retrieve all specific information related to the job offer.

/job/00c221870cfc1fe5?locality=us

in this example we query the job_id 00c221870cfc1fe5 on the US Indeed.
Now we can iterate through all our ids to retrieve all jobs offers information