Endpoint Playground
Test Crawlora's Meta Jobs catalog listing API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/meta-jobs/list" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | Page number, 1-based, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 50, maxes at 200 |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"page_size": 50,
"total": 754,
"listings": [
{
"id": "1238249364564427",
"url": "https://www.metacareers.com/profile/job_details/1238249364564427/",
"last_modified": "2026-07-29T01:17:34-07:00"
}
],
"source_url": "https://www.metacareers.com/jobsearch/sitemap.xml"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a page of Meta's own public job sitemap -- every open requisition's id, canonical URL, and last-modified timestamp, with no team/location/keyword filtering. Use this for full-catalog enumeration or change tracking via last_modified; use search when you need to filter by team, technology, location, employment type, or keyword.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"page_size": 50,
"total": 754,
"listings": [
{
"id": "1238249364564427",
"url": "https://www.metacareers.com/profile/job_details/1238249364564427/",
"last_modified": "2026-07-29T01:17:34-07:00"
}
],
"source_url": "https://www.metacareers.com/jobsearch/sitemap.xml"
}
}curl "https://api.crawlora.net/api/v1/meta-jobs/list" \
-H "x-api-key: $CRAWLORA_API_KEY"