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

> Browse and retrieve detailed product information from NataTop.ge's bridal and wedding fashion collection, including wedding dresses, accessories, evening wear, and bridal shoes. Find exactly what you're looking for by searching their complete catalog or viewing individual items with full specifications.

**Category:** E-commerce | **Website:** [natatop.ge/](https://natatop.ge/) | **Docs:** [parse.bot/marketplace/d0e50325-1fd7-4a4e-a1f9-a4d114c3b457/natatop-ge-api](https://parse.bot/marketplace/d0e50325-1fd7-4a4e-a1f9-a4d114c3b457/natatop-ge-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-natatop-ge-api-d0e50325/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full product details by slug, including multilingual name and description, all images, product attributes (fabric, silhouette, neckline, etc.), variant info (SKU, color, stock, price), and collection membership. Each product has a unique slug obtainable from list_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_products results (e.g. pearl-and-crystal-bridal-crown). |

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

### list_products

Retrieve the product catalog with summary info for each item. Supports filtering by category and stock status. Results are auto-iterated across pages. Each product summary includes pricing, category, primary image, and stock status but not full details (description, variants, attributes, images) — use get_product for those.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by category slug (e.g. wedding-dresses, accessories, evening-wear, bridal-shoes). |
| `in_stock` | string | No | Filter by stock availability. Pass 'true' to show only in-stock products. |
| `ordering` | string | No | Sort order for results. Prefix with '-' for descending. |
| `page` | integer | No | Page number (1-based). |
| `page_size` | integer | No | Number of products per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-natatop-ge-api-d0e50325/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","in_stock":"<string>","ordering":"<string>","page":"<integer>","page_size":"<integer>"}'
```
