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

> Search for home service professionals on Angi and access their detailed profiles including reviews, contact information, and photos to find the right contractor for your project. Quickly compare multiple service providers by viewing their ratings, customer feedback, and verified business details all in one place.

**Category:** Business Directories | **Website:** [angieslist.com/](https://angieslist.com/) | **Docs:** [parse.bot/marketplace/d7774f46-4a76-44d6-b0ca-ab1b83c72440/angieslist-com-api](https://parse.bot/marketplace/d7774f46-4a76-44d6-b0ca-ab1b83c72440/angieslist-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-angieslist-com-api-d7774f46/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_contact_info

Extract contact information for a specific company from their profile page JSON-LD data. Returns name, address, telephone (if available), and profile URL. The slug is obtained from search_pros results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profile_url` | string | Yes | Profile URL path from search_pros results[*].slug (e.g. '/companylist/us/ma/belmont/beantown-drains-reviews-7366722.htm'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angieslist-com-api-d7774f46/get_company_contact_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"profile_url":"<string>"}'
```

### get_company_photos

Retrieve project photos for a specific company. Returns album summaries and individual photo objects with image URLs. Returns empty arrays when the company has no photos. The slug is obtained from search_pros results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profile_url` | string | Yes | Profile URL path from search_pros results[*].slug (e.g. '/companylist/us/ma/belmont/beantown-drains-reviews-7366722.htm'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angieslist-com-api-d7774f46/get_company_photos \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"profile_url":"<string>"}'
```

### get_company_profile

Get the full profile of a specific company using their profile URL slug. Returns JSON-LD structured data including name, address, reviews, and aggregate rating. The slug is obtained from search_pros results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profile_url` | string | Yes | Profile URL path from search_pros results[*].slug (e.g. '/companylist/us/ma/belmont/beantown-drains-reviews-7366722.htm'). |

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

### get_company_reviews

Retrieve customer reviews for a specific company from their profile page JSON-LD data. Returns up to 25 recent reviews along with aggregate rating information. The slug is obtained from search_pros results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profile_url` | string | Yes | Profile URL path from search_pros results[*].slug (e.g. '/companylist/us/ma/belmont/beantown-drains-reviews-7366722.htm'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angieslist-com-api-d7774f46/get_company_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"profile_url":"<string>"}'
```

### search_pros

Search for service professionals by category and location (zip code). Returns a paginated list of companies with name, rating, review count, grade, and profile URL slug. Pagination is offset-based. Each result carries a slug suitable for the profile, reviews, contact, and photos endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category ID for the service type. If not provided, inferred from query. Falls back to '1271' (plumbing) if neither query nor category_id resolves to a known category. |
| `limit` | integer | No | Maximum number of results to return. |
| `location` | string | No | US zip code for the search area. |
| `offset` | integer | No | Offset for pagination. |
| `query` | string | No | Search keyword used to match a category ID if category_id is not provided. Supported keywords include: plumbing, electrical, hvac, landscaping, roofing, painting, cleaning, remodeling, handyperson, concrete, windows. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angieslist-com-api-d7774f46/search_pros \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","limit":"<integer>","location":"<string>","offset":"<integer>","query":"<string>"}'
```
