# List Internshala jobs

List public jobs with keyword, location, category, work-from-home, part-time, salary, and bounded pagination filters.

- Platform: [Internshala Public Jobs](https://docs.upscrape.com/docs/platforms/internshala)
- Capability ID: `internshala.jobs.list`
- Cost: 1 credit per request
- Maximum runtime: 60 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": {
    "category": "software-development",
    "keywords": "software developer",
    "location": "Bangalore",
    "max_pages": 1,
    "max_salary": 1200000,
    "min_salary": 300000,
    "work_from_home": true
  },
  "capability": "internshala.jobs.list"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `category` | `string` | No | Category supplied for this request. |
| `keywords` | `string` | No | Keywords supplied for this request. |
| `location` | `string` | No | Location supplied for this request. |
| `max_pages` | `integer` | No | Max pages supplied for this request. |
| `max_salary` | `integer` | No | Max salary supplied for this request. |
| `min_salary` | `integer` | No | Min salary supplied for this request. |
| `page` | `integer` | No | One-based result page to fetch. |
| `part_time` | `boolean` | No | Part time supplied for this request. |
| `work_from_home` | `boolean` | No | Work from home supplied for this request. |

### Example input

```json
{
  "category": "software-development",
  "keywords": "software developer",
  "location": "Bangalore",
  "max_pages": 1,
  "max_salary": 1200000,
  "min_salary": 300000,
  "work_from_home": true
}
```

## Response

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

No committed sample output is available for this capability.


## 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)
