# Limitlesslifenootropics — 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 data from limitlesslifenootropics.com.

**Category:** E-commerce | **Website:** [limitlesslifenootropics.com/](https://limitlesslifenootropics.com/) | **Docs:** [parse.bot/marketplace/ac6ddfb1-5a3b-44f3-a8da-8afabf1e131c/limitlesslifenootropics-com-api](https://parse.bot/marketplace/ac6ddfb1-5a3b-44f3-a8da-8afabf1e131c/limitlesslifenootropics-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-limitlesslifenootropics-com-api-ac6ddfb1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Get detailed information for a single product by its numeric entity ID. Returns full description, all images, specifications (custom fields), variant options with IDs and labels, and related products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Numeric product entity ID (e.g. from search_products or list_products results). |

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

### list_categories

List all product categories in a hierarchical tree structure. Returns top-level categories with their children (subcategories). Category IDs can be used with list_products to browse products by category.

**Estimated cost:** Metered

_No parameters required._

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

### list_products

List products within a specific category with cursor-based pagination. Returns products with basic info, availability, and options. Use end_cursor value as the after parameter to fetch the next page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `after` | string | No | Cursor for pagination. Use end_cursor from a previous response to fetch the next page. Omit for the first page. |
| `category_id` | string | Yes | Numeric category entity ID (from list_categories results). |
| `limit` | integer | No | Maximum number of products per page (1-50). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-limitlesslifenootropics-com-api-ac6ddfb1/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"after":"<string>","category_id":"<string>","limit":"<integer>"}'
```

### search_products

Search the product catalog by keyword. Returns matching products with descriptions, specifications, availability status, and variant options. Results are not paginated; use limit to control result count (max 50).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return (1-50). |
| `query` | string | Yes | Search term to find products (e.g. peptide name, compound type). |

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