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

> Access company reviews, ratings, and employee feedback from India's leading employer review platform to research workplace culture, salary insights, and company performance. Get detailed employee perspectives to make informed career decisions or compare companies before applying.

**Category:** Reviews & Ratings | **Website:** [www.ambitionbox.com/reviews/zepto-reviews](https://www.ambitionbox.com/reviews/zepto-reviews) | **Docs:** [parse.bot/marketplace/9be6d7a6-5004-42ac-87a0-a7503fda5033/ambitionbox-com-api](https://parse.bot/marketplace/9be6d7a6-5004-42ac-87a0-a7503fda5033/ambitionbox-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-ambitionbox-com-api-9be6d7a6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_reviews

Retrieve paginated employee reviews for a company on AmbitionBox. Each page returns up to ~20 reviews with ratings, pros/cons text, job profile, location, and category-level rating breakdowns. The first page may include pinned/featured reviews. Results are ordered by recency (newest first).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | URL slug of the company on AmbitionBox (e.g. 'zepto', 'tata-consultancy-services'). This is the segment before '-reviews' in the AmbitionBox reviews URL. |
| `page` | integer | No | Page number for pagination (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ambitionbox-com-api-9be6d7a6/get_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","page":"<integer>"}'
```
