# Unstop — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and filter internships on Unstop by domain, job type, and location to find opportunities that match your work preferences—whether you're looking for remote, in-office, or hybrid roles. Explore available domains and cities to refine your search and discover the perfect internship for your career goals.

**Category:** Jobs | **Website:** [unstop.com/](https://unstop.com/) | **Docs:** [parse.bot/marketplace/16877c79-d8a6-4824-bd47-ae4cc08a9b20/unstop-com-api](https://parse.bot/marketplace/16877c79-d8a6-4824-bd47-ae4cc08a9b20/unstop-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-unstop-com-api-16877c79/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cities

Search available cities on Unstop. When search is empty, returns a default list of popular cities. When search is provided, performs a fuzzy search across all cities worldwide. Each city includes id, city_name, state_name, and country_name.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `search` | string | No | City name search query (e.g. 'Mumbai', 'Delhi'). Empty returns a default list of popular Indian cities. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unstop-com-api-16877c79/get_cities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"search":"<string>"}'
```

### get_domains

List all available internship domains (work functions/roles). Each domain has an id, name, and slug. Use the slug value as the 'roles' parameter in search_internships to filter by domain.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unstop-com-api-16877c79/get_domains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_internships

Search open internships on Unstop, optionally filtered by domain (role slug from get_domains) and job type. Returns paginated results including title, organization, salary, locations, required skills, and eligibility. Results are ordered by most recently posted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_type` | string | No | Filter by work location type. Omitting returns all types. |
| `page` | integer | No | Page number for pagination (1-based). |
| `per_page` | integer | No | Number of results per page (1-100). |
| `roles` | string | No | Domain/role slug to filter internships (e.g. 'data-science', 'software-development', 'digital-marketing'). Obtain valid slugs from the get_domains endpoint. Omitting returns all domains. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unstop-com-api-16877c79/search_internships \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_type":"<string>","page":"<integer>","per_page":"<integer>","roles":"<string>"}'
```
