jobs
jobs
Page 3 of 10.
Overview
-
Backend Engineer
USD65000.00
-
Account Executive
USD35000.00
-
Sales Development Representative
USD65000.00
-
Growth Marketer
USD62000.00
-
DevOps Engineer
USD161000.00
-
Operations Analyst
USD118000.00
-
Site Reliability Engineer
USD120000.00
-
Product Manager
USD80000.00
-
Product Manager
USD56000.00
-
Sales Development Representative
USD88000.00
-
Software Engineer
USD59000.00
-
DevOps Engineer
USD157000.00
-
Marketing Manager
USD93000.00
-
Operations Analyst
USD117000.00
-
Backend Engineer
USD163000.00
-
Operations Analyst
USD131000.00
-
Operations Analyst
USD41000.00
-
Operations Analyst
USD50000.00
-
Marketing Manager
USD167000.00
-
Backend Engineer
USD34000.00
-
Software Engineer
USD109000.00
-
UX Researcher
USD77000.00
-
Data Scientist
USD179000.00
-
Product Designer
USD93000.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/jobs?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/jobs?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/jobs.d.ts https://example-data.com/types/jobs.d.ts
import type { Job, ListEnvelope } from "./types/jobs";
const res = await fetch(
"https://example-data.com/api/v1/jobs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Job>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/jobs",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 49,
"companyId": 20,
"title": "Backend Engineer",
"slug": "backend-engineer-49",
"description": "Ventus amplexus exercitationem subiungo aeneus argentum agnosco consequatur. Clarus thesis comedo tabella. Cedo teneo acies amet.\n\nCogo triduana cupressus xiphias depulso callide. Sufficio baiulus consectetur subvenio demoror bardus deporto thesis abundans verus. Aeger denique aptus.\n\nVae caute desipio vix trado cruciamentum ventus decens thermae volaticus. Libero provident vae cenaculum. Defungo cogito deprecator asporto.",
"employmentType": "internship",
"locationType": "remote",
"location": "Remote",
"salaryMin": 65000,
"salaryMax": 131185,
"currency": "USD",
"isPublished": true,
"postedAt": "2026-03-05T11:11:19.963Z",
"expiresAt": null,
"createdAt": "2026-03-04T22:47:15.996Z",
"updatedAt": "2026-03-08T08:19:28.890Z"
},
{
"id": 50,
"companyId": 20,
"title": "Account Executive",
"slug": "account-executive-50",
"description": "Qui turba ocer solitudo depulso barba. Ventito arca debilito tabesco voveo acsi. Uterque corporis officiis attollo accusamus iure.\n\nAuctor versus inflammatio voco velum. Congregatio trans degero demens tego baiulus. Conitor ventosus debeo reprehenderit coadunatio totam sulum stultus.",
"employmentType": "full_time",
"locationType": "remote",
"location": "Remote",
"salaryMin": 35000,
"salaryMax": 85804,
"currency": "USD",
"isPublished": true,
"postedAt": "2025-01-23T19:05:33.495Z",
"expiresAt": null,
"createdAt": "2025-01-23T09:02:19.384Z",
"updatedAt": "2025-01-27T18:08:41.160Z"
},
{
"id": 51,
"companyId": 20,
"title": "Sales Development Representative",
"slug": "sales-development-representative-51",
"description": "Cena atrocitas trans statim necessitatibus ustilo decet vilitas. Esse iusto verbum error solitudo vacuus vindico aliqua alveus impedit. Contabesco utique inflammatio succurro aegre.\n\nArticulus administratio deripio creo censura bellum. Abundans assumenda coniuratio ocer armarium aeternus damnatio. Bis exercitationem auctor audax sono laudantium.",
"employmentType": "full_time",
"locationType": "onsite",
"location": "South Laronhaven, Anguilla",
"salaryMin": 65000,
"salaryMax": 87988,
"currency": "USD",
"isPublished": true,
"postedAt": "2026-04-27T23:05:30.892Z",
"expiresAt": "2026-06-29T23:05:30.892Z",
"createdAt": "2026-04-27T22:20:38.209Z",
"updatedAt": "2026-04-28T13:46:02.103Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 240,
"totalPages": 10
},
"links": {
"self": "/api/v1/jobs?page=3&limit=24",
"first": "/api/v1/jobs?page=1&limit=24",
"last": "/api/v1/jobs?page=10&limit=24",
"next": "/api/v1/jobs?page=4&limit=24",
"prev": "/api/v1/jobs?page=2&limit=24"
}
}