# Element Vape — 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 and browse vape products from Element Vape, including prices, specifications, availability, and category listings. Access detailed product pages with variant options, media galleries, and customer reviews.

**Category:** E-commerce | **Website:** [elementvape.com/](https://elementvape.com/) | **Docs:** [parse.bot/marketplace/7a6299cd-625f-4400-b68a-1531fa4d1c11/elementvape-com-api](https://parse.bot/marketplace/7a6299cd-625f-4400-b68a-1531fa4d1c11/elementvape-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-elementvape-com-api-7a6299cd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Get the site's product category tree via GraphQL. Returns top-level categories and their immediate children with labels and URLs.

**Estimated cost:** Metered

_No parameters required._

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

### get_product_details

Get full product details by URL slug via GraphQL API. Returns comprehensive product information including pricing, media gallery, configurable options (colors/flavors), variant list, and embedded Yotpo review summary with recent reviews.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug (e.g., 'geek-bar-pulse-x', 'smok-novo-3'). Obtain from search_products results slug field. |

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

### get_product_reviews

Get customer reviews for a product by numeric product ID via Yotpo API. Returns paginated review content, ratings, verified buyer status, sentiment scores, and overall summary statistics. The product_id is the numeric ID from the get_product_details response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of reviews per page. |
| `product_id` | string | Yes | Numeric product ID (e.g., '74074', '59263'). Obtain from the get_product_details response id field. |

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

### search_products

Search and browse vape products via Klevu search engine. Returns paginated product listings with name, brand, price, rating, availability, and basic specifications. Pagination uses offset-based indexing. Each product includes a slug for fetching full details via get_product_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by category name (e.g., 'Disposable Vapes', 'Nicotine Salts E-Liquid'). Omitting returns all categories. |
| `limit` | integer | No | Number of results per page (max 60). |
| `offset` | integer | No | Offset for pagination (0-based). |
| `query` | string | No | Search query term (e.g., 'disposable', 'e-liquid', 'smok'). Defaults to wildcard matching all products. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-elementvape-com-api-7a6299cd/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","offset":"<integer>","query":"<string>","sort":"<string>"}'
```
