Endpoint Playground
Test Crawlora's Meta Jobs single posting 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/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Meta job id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1238249364564427",
"title": "Product Manager",
"locations": [
"Menlo Park, CA"
],
"departments": [
"Product Management"
],
"description": "Build products used by billions of people...",
"responsibilities": [
"Define product strategy",
"Partner with engineering"
],
"minimum_qualifications": [
"5+ years of product management experience"
],
"preferred_qualifications": [
"MBA or equivalent experience"
],
"compensation_min": "$173,000/year",
"compensation_max": "$241,000/year",
"compensation_country": "US",
"url": "https://www.metacareers.com/profile/job_details/1238249364564427/"
}
}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 one Meta Careers posting by its numeric job id (the `id` field returned by search or list). Parsed from metacareers.com's server-rendered job detail page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1238249364564427",
"title": "Product Manager",
"locations": [
"Menlo Park, CA"
],
"departments": [
"Product Management"
],
"description": "Build products used by billions of people...",
"responsibilities": [
"Define product strategy",
"Partner with engineering"
],
"minimum_qualifications": [
"5+ years of product management experience"
],
"preferred_qualifications": [
"MBA or equivalent experience"
],
"compensation_min": "$173,000/year",
"compensation_max": "$241,000/year",
"compensation_country": "US",
"url": "https://www.metacareers.com/profile/job_details/1238249364564427/"
}
}curl "https://api.crawlora.net/api/v1/meta-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"