# Progressive — 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 Progressive's insurance products, coverages, and discounts while finding local agents and reading customer reviews and knowledge base articles. Compare auto insurance options, explore bundling combinations, and get detailed product information all in one place.

**Category:** Finance & Markets | **Website:** [progressive.com/](https://progressive.com/) | **Docs:** [parse.bot/marketplace/7afb398d-d3f4-481c-a81c-f55ec6e7489a/progressive-com-api](https://parse.bot/marketplace/7afb398d-d3f4-481c-a81c-f55ec6e7489a/progressive-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-progressive-com-api-7afb398d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_agent

Find independent insurance agents by state and city using the Progressive agent directory at progressiveagent.com. Returns agent names, addresses, phone numbers, and detail page URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | City name in lowercase, hyphenated for multi-word cities (e.g. 'austin', 'new-york', 'miami'). |
| `state` | string | Yes | State name in lowercase, hyphenated for multi-word states (e.g. 'texas', 'new-york', 'florida'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/find_agent \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","state":"<string>"}'
```

### get_answers_article

Retrieve the full content of a specific Progressive Answers knowledge base article. Use URLs obtained from get_answers_articles_by_product. Returns the article title and all text content (paragraphs, headings, list items).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_url` | string | Yes | Full URL of the article to retrieve, sourced from get_answers_articles_by_product categories[*].url (e.g. 'https://www.progressive.com/answers/car-insurance-basics-videos/'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_answers_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_url":"<string>"}'
```

### get_answers_articles_by_product

List Progressive Answers knowledge base article categories and featured articles from the main answers index page. Returns category links and recent/featured article links with their URLs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_answers_articles_by_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_auto_coverages

List all auto insurance coverage types with detailed descriptions from Progressive's auto coverages page. Returns coverage name and description pairs for liability, comprehensive, collision, and add-on coverages.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_auto_coverages \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_auto_discounts

List all available auto insurance discounts with descriptions from Progressive's auto discounts page. Includes safe driver, multi-policy, multi-car, online quote, and other discount programs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_auto_discounts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_bundling_options

Get information about bundling and multi-policy discount options from Progressive's bundling page. Returns FAQ-style entries about insurance bundling benefits, eligibility, and management.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_bundling_options \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_coverages

Get coverage types for any insurance product by its slug. Tries both /insurance-coverages/ and /coverages/ URL patterns for the product. Returns coverage name and description pairs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | Product URL slug such as 'auto', 'homeowners', 'boat', 'motorcycle'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_product_coverages \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_slug":"<string>"}'
```

### get_product_details

Get detailed features and highlights for a specific insurance product page. Parses the product's main page for headings, descriptions, and feature summaries. Returns the page title, meta description, and extracted feature sections.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | Product URL slug such as 'auto', 'homeowners', 'boat', 'motorcycle', 'renters'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_slug":"<string>"}'
```

### get_product_discounts

Get discount options for any insurance product by its slug. Returns available discounts with names and descriptions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | Product URL slug such as 'auto', 'homeowners', 'motorcycle', 'renters'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_product_discounts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_slug":"<string>"}'
```

### get_reviews

Retrieve customer reviews from the Progressive insurance reviews page. Returns review text content from customer testimonials.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/get_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_insurance_products

List all available Progressive insurance products with descriptions, URLs, and product codes. Returns products from the internal product catalog including auto, boat, homeowners, motorcycle, and more. Some niche products may have empty descriptions and URLs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-progressive-com-api-7afb398d/list_insurance_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
