Aller au contenu
GET /v1/meta

Usage notes & filter values

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/remotejobs-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}