Endpoint Playground
Test Crawlora's SmartRecruiters 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/jobs/smartrecruiters/posting?company=Visa&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | Visa | SmartRecruiters company id |
| id | string | Yes | SmartRecruiters posting id |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "smartrecruiters",
"id": "744000133907678",
"title": "Sr. Manager",
"company": "Visa",
"department": "Software Development/Engineering",
"location": "Austin, TX, US",
"url": "https://jobs.smartrecruiters.com/Visa/744000133907678",
"description_text": "Company overview ... Qualifications ..."
}
}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 single SmartRecruiters posting with its jobAd description. Recruiter personal data is intentionally omitted. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "smartrecruiters",
"id": "744000133907678",
"title": "Sr. Manager",
"company": "Visa",
"department": "Software Development/Engineering",
"location": "Austin, TX, US",
"url": "https://jobs.smartrecruiters.com/Visa/744000133907678",
"description_text": "Company overview ... Qualifications ..."
}
}curl "https://api.crawlora.net/api/v1/jobs/smartrecruiters/posting?company=<company>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"