Marketplace
No threads yet
Live

get_company_reviews

ambitionbox.com

Retrieves paginated employee reviews for a company from https://www.ambitionbox.com, including ratings, pros and cons, role, location, workplace details, and category-level ratings. Results are ordered newest first.

Parameters3
Runs12
Updated10d ago
Operational12 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_company_reviews?

Retrieves paginated employee reviews for a company from https://www.ambitionbox.com, including ratings, pros and cons, role, location, workplace details, and category-level ratings. Results are ordered newest first. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass company, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "company": {
    "id": 0,
    "name": "<string>",
    "slug": "<string>"
  },
  "reviews": [
    {}
  ],
  "page_size": 0,
  "total_pages": 0,
  "last_updated": "<string>",
  "total_reviews": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b089b153-6ed6-4da8-a0fd-ff7ccb563022/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b089b153-6ed6-4da8-a0fd-ff7ccb563022",
    "variables": {
        "company": "zepto",
        "page": 1,
        "page_size": 20
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="b089b153-6ed6-4da8-a0fd-ff7ccb563022") — the "get_company_reviews" function, which retrieves paginated employee reviews for a company from https://www.ambitionbox.com, including ratings, pros and cons, role, location, workplace details, and category-level ratings. Results are ordered newest first..

It takes company (str), page (int), page_size (int). Return the result as structured JSON.