# List Internshala internships

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

- Platform: [Internshala Public Jobs](https://docs.upscrape.com/docs/platforms/internshala)
- Capability ID: `internshala.internships.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": "graphic-design",
    "keywords": "design",
    "location": "Mumbai",
    "max_pages": 1,
    "min_stipend": 10000,
    "work_from_home": false
  },
  "capability": "internshala.internships.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_stipend` | `integer` | No | Max stipend supplied for this request. |
| `min_stipend` | `integer` | No | Min stipend 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": "graphic-design",
  "keywords": "design",
  "location": "Mumbai",
  "max_pages": 1,
  "min_stipend": 10000,
  "work_from_home": false
}
```

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