# Collegedunia — 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.

> Fetch authentic university reviews from Collegedunia Study Abroad, filtering by stream, degree type, and other criteria to research institutions that match your academic interests. Browse through paginated results to discover detailed student feedback and ratings for universities worldwide.

**Category:** Education | **Website:** [collegedunia.com/web-api/uk/university/865-university-of-oxford-oxford/reviews?data=eyJ1c2VyX2N1cnJlbmN5IjoiMiJ9](https://collegedunia.com/web-api/uk/university/865-university-of-oxford-oxford/reviews?data=eyJ1c2VyX2N1cnJlbmN5IjoiMiJ9) | **Docs:** [parse.bot/marketplace/9e6e114b-57bf-4fa4-9604-5df04e7e22d6/collegedunia-com-api](https://parse.bot/marketplace/9e6e114b-57bf-4fa4-9604-5df04e7e22d6/collegedunia-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-collegedunia-com-api-9e6e114b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_university_reviews

Get student reviews for a university on Collegedunia. Returns paginated reviews with ratings, pros/cons, content, and available filters. The university_slug follows the site's URL pattern including country prefix.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `degree_type` | string | No | Filter reviews by degree type. Available values are returned in the filters field of the response (e.g. 'Bachelor', 'Master'). |
| `page` | integer | No | Page number for paginated results. |
| `stream_id` | string | No | Filter reviews by stream/subject ID. Available stream IDs are returned in the filters field of the response (e.g. '339' for Computer Science, '4' for Arts). |
| `university_slug` | string | Yes | University path slug in format '<country>/university/<id>-<name-slug>'. Examples: 'uk/university/865-university-of-oxford-oxford', 'usa/university/1020-northeastern-university-boston'. The slug can be found from the Collegedunia university page URL. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-collegedunia-com-api-9e6e114b/get_university_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"degree_type":"<string>","page":"<integer>","stream_id":"<string>","university_slug":"<string>"}'
```
