# Aerolase — 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 detailed information about Aerolase devices, clinical research, patient success stories, treatments, and upcoming events directly from their website. Browse discovery pages to find specific content, then retrieve full details about device specifications, blog posts, articles, and specialty services.

**Category:** Healthcare | **Website:** [www.aerolase.com/](https://www.aerolase.com/) | **Docs:** [parse.bot/marketplace/b3b665bf-4279-4d1a-b56f-637fc23b1310/aerolase-com-api](https://parse.bot/marketplace/b3b665bf-4279-4d1a-b56f-637fc23b1310/aerolase-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-aerolase-com-api-b3b665bf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### discover_pages

Discovers all English-language page URLs on aerolase.com from the sitemap, categorized by content type (device, success_story, blog, article, specialty, event, webinar, treatment, info, other). Each entry includes the full URL and path. Use the returned paths as input to get_page_content.

**Estimated cost:** Metered

_No parameters required._

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

### get_page_content

Extracts structured data from a single aerolase.com page given its path. The extraction is tailored by page type: device pages yield technical specs and indications; success stories yield practitioner info, quotes, and devices used; blogs and articles yield title, date, headings, and key claims; specialty pages yield value propositions and testimonials; events yield dates, prices, and speakers. Every result includes source_url and page_type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url_path` | string | Yes | Path portion of the aerolase.com URL to extract (e.g. '/neo', '/success-stories/a-case-study-with-smita-ohri', '/blogs/3-ways-aerolase-has-improved-medical-laser-technology'). |

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