# Search SmartRecruiters jobs globally

Search the bounded public SmartRecruiters career index across employers without exposing unsupported pagination controls.

- Platform: [SmartRecruiters Jobs](https://docs.upscrape.com/docs/platforms/smart-recruiters)
- Capability ID: `smart-recruiters.jobs.global-search`
- Cost: 1 credit per request
- Maximum runtime: 30 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "query": "software engineer"
  },
  "capability": "smart-recruiters.jobs.global-search"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `query` | `string` | Yes | Text query across the public SmartRecruiters career index. |

### Example input

```json
{
  "query": "software engineer"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "jobs": [
    {
      "apply_url": "https://jobs.smartrecruiters.com/SmithsGroup2/[redacted:token]",
      "city": "Pasadena",
      "company": "Smiths Group",
      "company_identifier": "SmithsGroup2",
      "country": "us",
      "default_job_ad": false,
      "description_sections": {},
      "detail_url": "https://api.smartrecruiters.com/v1/companies/SmithsGroup2/postings/13161788970",
      "hybrid": false,
      "job_id": "744000145368049",
      "location": "Pasadena, TX",
      "posted_at": "2026-08-24T21:29:36.651Z",
      "region": "TX",
      "remote": false,
      "title": "Industrial Customer Service Representative-Couplings",
      "workplace_type": "ONSITE"
    },
    {
      "apply_url": "https://jobs.smartrecruiters.com/NBCUniversal3/744000145367909-video-player-architect",
      "city": "New York",
      "company": "NBCUniversal",
      "company_identifier": "NBCUniversal3",
      "country": "us",
      "default_job_ad": false,
      "description_sections": {},
      "detail_url": "https://api.smartrecruiters.com/v1/companies/NBCUniversal3/postings/13045961770",
      "hybrid": true,
      "job_id": "744000145367909",
      "location": "New York, NEW YORK",
      "posted_at": "2026-08-24T21:28:35.054Z",
      "region": "NEW YORK",
      "remote": false,
      "title": "Video Player Architect",
      "workplace_type": "HYBRID"
    },
    {
      "apply_url": "https://jobs.smartrecruiters.com/BoschGroup/[redacted:token]",
      "city": "Guadalajara",
      "company": "Bosch Group",
      "company_identifier": "BoschGroup",
      "country": "mx",
      "default_job_ad": false,
      "description_sections": {},
      "detail_url": "https://api.smartrecruiters.com/v1/companies/BoschGroup/postings/13183613226",
      "hybrid": true,
      "job_id": "744000145367509",
      "location": "Guadalajara, Mexico",
      "posted_at": "2026-08-24T21:25:43.691Z",
      "remote": false,
      "title": "Sr. Engineering Product Quality I",
      "workplace_type": "HYBRID"
    }
  ],
  "result_limit": 100,
  "returned_count": 71,
  "total_found": 48703,
  "truncated": true
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `jobs` | `array` | 3 items |
| `jobs` | `array` | 3 items |
| `result_limit` | `integer` | 100 |
| `returned_count` | `integer` | 71 |
| `total_found` | `integer` | 48703 |
| `truncated` | `boolean` | true |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
