# Clutch (Colombia) — 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.

> Clutch provides 6 callable API endpoints through the Parse marketplace.

**Category:** Reviews & Ratings | **Website:** [clutch.co/](https://clutch.co/) | **Docs:** [parse.bot/marketplace/dc63b86b-962f-4623-9f8c-7c668bcce95c/clutch-co-api](https://parse.bot/marketplace/dc63b86b-962f-4623-9f8c-7c668bcce95c/clutch-co-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-clutch-co-api-dc63b86b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_locations

Get office locations for a company including addresses, phone numbers, and employee counts per location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company profile slug from search_companies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clutch-co-api-dc63b86b/get_company_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_company_portfolio

Get portfolio items (case studies/projects) for a company. Returns project titles and associated service lines. Some companies may have no portfolio items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company profile slug from search_companies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clutch-co-api-dc63b86b/get_company_portfolio \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_company_profile

Get detailed profile of a company by its slug. Returns company name, rating, tagline, key details (project size, hourly rate, employees, year founded), website URL, and service line breakdown with percentages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company profile slug from search_companies results (e.g. 'simform'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clutch-co-api-dc63b86b/get_company_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_company_reviews

Get paginated reviews for a company. Returns review titles, ratings, dates, and project information (services, project size, project length). Each page returns up to ~11 reviews.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number, 0-based. |
| `slug` | string | Yes | Company profile slug from search_companies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clutch-co-api-dc63b86b/get_company_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","slug":"<string>"}'
```

### list_categories

List top service categories available on Clutch.co. Returns a curated set of popular category slugs that can be used with search_companies to browse companies by service type.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clutch-co-api-dc63b86b/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_companies

Search for companies in a specific service category on Clutch.co. Returns a paginated list of company summaries. Use the category slug from list_categories. Each page returns up to ~30 companies. Rating and review_count may be null if not displayed in the listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug identifying the service vertical to search. |
| `page` | integer | No | Page number, 0-based. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clutch-co-api-dc63b86b/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```
