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

> Access term life, critical illness, and health & dental insurance plan details from PolicyMe, including coverage options, real-time premium quotes, sample rate tables, and customer reviews.

**Category:** Finance & Markets | **Website:** [policyme.com/](https://policyme.com/) | **Docs:** [parse.bot/marketplace/68fdf33d-3c7a-4edc-928a-c7c9cc5470cc/policyme-com-api](https://parse.bot/marketplace/68fdf33d-3c7a-4edc-928a-c7c9cc5470cc/policyme-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-policyme-com-api-68fdf33d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_about_us_info

Retrieve company contact and regulatory information for PolicyMe including address, phone, email, underwriter, and consumer protection details. Returns a single object with all company metadata. No parameters needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_about_us_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_critical_illness_quote

Generate a monthly premium quote for critical illness insurance. Returns pricing based on the provided demographic and coverage parameters. Each quote includes monthly and annual premiums with a period breakdown.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `birthdate` | string | Yes | Date of birth in DD/MM/YYYY format. |
| `coverage_amount` | integer | Yes | Coverage amount in dollars (e.g. 50000). |
| `coverage_length` | integer | Yes | Term length in years (e.g. 10). |
| `gender` | string | Yes | Gender of the applicant: M or F. |
| `smoker` | string | Yes | Smoker status of the applicant: Y or N. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_critical_illness_quote \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"birthdate":"<string>","coverage_amount":"<integer>","coverage_length":"<integer>","gender":"<string>","smoker":"<string>"}'
```

### get_health_dental_plan_details

Retrieve coverage details for all health and dental plan tiers offered by PolicyMe. Returns plan names, summaries, and feature lists for each tier (Economic, Classic, Dental Care, Advanced). No parameters needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_health_dental_plan_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_insurance_product_list

Retrieve the catalog of insurance products offered by PolicyMe. Returns all available product types with their names, categories, and page URLs. Single-page, no parameters needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_insurance_product_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_reviews_and_ratings

Retrieve customer reviews and ratings for PolicyMe from reviews.io. Returns paginated reviews sorted by date descending, along with aggregate statistics (total count, average rating). Each review includes the author, rating, text, date, and verification status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of reviews per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_reviews_and_ratings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>"}'
```

### get_term_life_insurance_product_info

Retrieve detailed product information for term life insurance including available coverage range, term lengths, and key features. Returns a static product description — no parameters needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_term_life_insurance_product_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_term_life_quote

Generate a monthly premium quote for term life insurance. Calls the PolicyMe quote engine and returns the lowest available monthly premium along with quotes from multiple insurers. Each insurer quote includes monthly and annual premiums, validity status, and a breakdown by period. Invalid quotes (mn_prems=0) indicate that insurer does not offer the requested coverage.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `birthdate` | string | Yes | Date of birth in DD/MM/YYYY format. |
| `coverage_amount` | integer | Yes | Coverage amount in dollars (e.g. 500000). |
| `coverage_length` | integer | Yes | Term length in years: 10, 15, 20, 25, or 30. |
| `gender` | string | Yes | Gender of the applicant: M or F. |
| `province` | string | No | Canadian province code (e.g. ON, BC, AB, QC, MB, SK, NB, NS, PE, NL). |
| `smoker` | string | Yes | Smoker status of the applicant: Y or N. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_term_life_quote \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"birthdate":"<string>","coverage_amount":"<integer>","coverage_length":"<integer>","gender":"<string>","province":"<string>","smoker":"<string>"}'
```

### get_term_life_sample_rates_table

Retrieve sample rates for term life insurance organized by age. Returns representative monthly premiums for non-smokers with $500,000 in 20-year coverage, broken down by gender. No parameters needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policyme-com-api-68fdf33d/get_term_life_sample_rates_table \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
