/v1/meta
Usage notes & filter values
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/remotejobs-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/remotejobs-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/remotejobs-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/remotejobs-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "A live board of currently-open remote jobs. /v1/jobs returns open positions and filters them upstream — by free-text keyword (tag=python), by industry (industry=dev, design, marketing, finance, hr, data-science, …), by region (geo=usa, europe, uk, emea, latam, asia, anywhere) and by seniority (level=junior, midweight, senior, manager); count caps the number returned (1-50). Each job carries the title, company name and logo, industry and job-type tags, the geographic region it's open to, the seniority level, a plain-text excerpt and full description, the publication date and a direct apply URL. All filters are verified to actually narrow results. Data from the Jobicy remote job board (free to use); listings change as roles open and close. Ideal for job aggregators, career sites, remote-work dashboards and Slack/Discord job bots.",
"source": "Jobicy — remote job board (jobicy.com)",
"filters": {
"geo": [
"usa",
"canada",
"uk",
"europe",
"emea",
"latam",
"asia",
"australia",
"anywhere"
],
"level": [
"any",
"junior",
"midweight",
"senior",
"manager"
],
"industry": [
"dev",
"design",
"marketing",
"copywriting",
"seller",
"supporting",
"business",
"management",
"finance",
"hr",
"data-science",
"devops",
"admin"
]
},
"endpoints": [
"/v1/jobs",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T16:23:45.884Z",
"request_id": "ca417d6d-97b4-4581-a3a9-3a2bf84b6e90"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}