TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/mauroperez055/infoJobs/llms.txt
Use this file to discover all available pages before exploring further.
GET /jobs endpoint returns a paginated collection of job listings from the in-memory store. You can narrow results with optional query parameters that filter by free-text search, technology stack, experience level, or exact title match. The response always includes metadata about the current page so clients can implement forward and backward navigation.
Query Parameters
Free-text search term. Matches against both job title (
titulo) and description (descripcion) using a case-insensitive substring comparison.Filter by exact title match. Compared case-insensitively against the
titulo field.Accepted by the query parser and forwarded to the model, but the current
JobModel.getAll implementation does not apply a filter on this parameter — all jobs are returned regardless of the value supplied. This filter is reserved for a future implementation that will match against the data.nivel field.Filter by technology name (e.g.
react, node, typescript). Must exactly match one of the strings in the job’s data.technology array.Maximum number of job records to return in a single page. Must be a positive integer.
Number of records to skip before beginning the result set. Used together with
limit to paginate through all results.Response Fields
Total number of jobs that matched the applied filters, regardless of
limit and offset. Use this value to calculate total pages.The
limit value that was applied to this response.The
offset value that was applied to this response.Array of Job objects matching the query.
Example
Fetch the first 5 jobs tagged with thereact technology: