# Shiksha — 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 browse Shiksha colleges by stream/course, then fetch detailed institute profiles and course offerings, plus upcoming exam schedules by stream.

**Category:** Education | **Website:** [shiksha.com/](https://shiksha.com/) | **Docs:** [parse.bot/marketplace/6cb0493b-f70c-4595-9076-5c109af7dea4/shiksha-com-api](https://parse.bot/marketplace/6cb0493b-f70c-4595-9076-5c109af7dea4/shiksha-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-shiksha-com-api-6cb0493b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_college_courses

Get detailed course information for all courses offered by a specific college, including course names, fees, seats, eligibility criteria, and accepted exams.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `college_url` | string | Yes | College URL path from search or list results (e.g., /university/iit-bombay-indian-institute-of-technology-mumbai-54212) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shiksha-com-api-6cb0493b/get_college_courses \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"college_url":"<string>"}'
```

### get_college_details

Get comprehensive details about a specific college including name, address, website URL, contact info, courses, admission criteria, fees, reviews, rankings, highlights, top recruiters, and accreditation info.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `college_url` | string | Yes | College URL path from search or list results (e.g., /university/iit-bombay-indian-institute-of-technology-mumbai-54212) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shiksha-com-api-6cb0493b/get_college_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"college_url":"<string>"}'
```

### list_colleges

List colleges by stream and course category with pagination. Returns comprehensive data including names, addresses, fees, courses offered, admission criteria, rankings, placement packages, and ratings. Approximately 21 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `course` | string | No | Course type slug used in URL (b-tech, mba, mbbs, etc.) |
| `page` | integer | No | Page number for pagination (starts at 1) |
| `stream` | string | No | Education stream |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shiksha-com-api-6cb0493b/list_colleges \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"course":"<string>","page":"<integer>","stream":"<string>"}'
```

### list_exams

List upcoming exams with exam names, dates, schedules, registration deadlines, and related links. Supports different education streams.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `stream` | string | No | Education stream |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shiksha-com-api-6cb0493b/list_exams \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"stream":"<string>"}'
```

### search_colleges

Search for colleges by keyword. Returns matching colleges with details like name, location, ratings, courses, and placement data. For broad category queries (e.g., 'MBA colleges in Bangalore'), returns intent='category' with a redirect_url to the appropriate category listing page and an empty colleges array. For specific name queries (e.g., 'IIT', 'BITS Pilani'), returns intent='basicinfo' with populated colleges array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g., 'IIT', 'BITS Pilani', 'MBA colleges in Bangalore') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shiksha-com-api-6cb0493b/search_colleges \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
