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

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

**Category:** Reviews & Ratings | **Website:** [capterra.com/](https://capterra.com/) | **Docs:** [parse.bot/marketplace/786d1eda-eedf-4d73-b0ce-b0bc571ee23d/capterra-com-api](https://parse.bot/marketplace/786d1eda-eedf-4d73-b0ce-b0bc571ee23d/capterra-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-capterra-com-api-786d1eda/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Retrieve products listed within a specific software category. Returns product names, numeric IDs, URL slugs, and full URLs. Each product's id and slug can be used with get_product_details or get_product_reviews. No pagination; returns all products shown on the category page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | The slug of the category from get_software_categories (e.g. 'accounting', 'project-management', 'human-resource'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-capterra-com-api-786d1eda/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>"}'
```

### get_company_profile

Retrieve the profile of a software vendor/company.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | The slug of the company. |

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

### get_product_details

Retrieve detailed information about a specific software product, including description, overall rating, review count, and feature list. Requires both product_id and product_name (slug) which are available from get_category_products or search_software results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | The numeric product ID (e.g. '155928'). Available from get_category_products or search_software results. |
| `product_name` | string | Yes | The URL slug of the product (e.g. 'Zoho-CRM', 'HubSpot-CRM'). Available from get_category_products or search_software results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-capterra-com-api-786d1eda/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","product_name":"<string>"}'
```

### get_product_reviews

Retrieve user reviews for a software product. Returns paginated reviews with title, date, overall rating, pros, and cons text. Requires both product_id and product_name (slug). Pagination is page-based starting at 1.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number of reviews to retrieve. |
| `product_id` | string | Yes | The numeric product ID (e.g. '155928'). Available from get_category_products or search_software results. |
| `product_name` | string | Yes | The URL slug of the product (e.g. 'Zoho-CRM', 'HubSpot-CRM'). Available from get_category_products or search_software results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-capterra-com-api-786d1eda/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","product_id":"<string>","product_name":"<string>"}'
```

### get_software_categories

Retrieve a list of all software categories available on Capterra. Returns category names, URLs, and slugs. Each slug can be passed to get_category_products to list products in that category. No pagination; returns the full category tree in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-capterra-com-api-786d1eda/get_software_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_software

Search for software products by keyword. Returns matching products with name, numeric ID, URL slug, and full URL. Results are not paginated; returns the first page of matches from Capterra's search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | The search keyword (e.g. 'CRM', 'project management', 'accounting'). |

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