Endpoint Playground
Test Crawlora's SmartRecruiters Postings 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/jobs/smartrecruiters/postings?company=Visa" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | Visa | SmartRecruiters company id (careers URL) |
| limit | integer | No | Page size, default 100, max 100 | |
| offset | integer | No | Page offset, default 0 |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "smartrecruiters",
"company": "Visa",
"count": 100,
"total": 420,
"jobs": [
{
"provider": "smartrecruiters",
"id": "744000133907678",
"title": "Sr. Manager",
"company": "Visa",
"department": "Software Development/Engineering",
"location": "Austin, TX, US",
"remote": false,
"employment_type": "Full-time",
"req_id": "REF1",
"url": "https://jobs.smartrecruiters.com/Visa/744000133907678",
"posted_at": "2026-06-24T10:00:11.853Z"
}
],
"source_url": "https://api.smartrecruiters.com/v1/companies/Visa/postings?limit=100&offset=0"
}
}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.
Lists a company's public SmartRecruiters postings, paged via limit/offset. The company is the SmartRecruiters identifier from its careers URL. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "smartrecruiters",
"company": "Visa",
"count": 100,
"total": 420,
"jobs": [
{
"provider": "smartrecruiters",
"id": "744000133907678",
"title": "Sr. Manager",
"company": "Visa",
"department": "Software Development/Engineering",
"location": "Austin, TX, US",
"remote": false,
"employment_type": "Full-time",
"req_id": "REF1",
"url": "https://jobs.smartrecruiters.com/Visa/744000133907678",
"posted_at": "2026-06-24T10:00:11.853Z"
}
],
"source_url": "https://api.smartrecruiters.com/v1/companies/Visa/postings?limit=100&offset=0"
}
}curl "https://api.crawlora.net/api/v1/jobs/smartrecruiters/postings?company=<company>" \
-H "x-api-key: $CRAWLORA_API_KEY"