# Alphaomegapeptide — 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 alphaomegapeptide.com.

**Category:** E-commerce | **Website:** [alphaomegapeptide.com/](https://alphaomegapeptide.com/) | **Docs:** [parse.bot/marketplace/82c643d2-ade8-4891-9e6e-df6d8d98d4a0/alphaomegapeptide-com-api](https://parse.bot/marketplace/82c643d2-ade8-4891-9e6e-df6d8d98d4a0/alphaomegapeptide-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-alphaomegapeptide-com-api-82c643d2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Get detailed information for a single product by its numeric ID. Returns full product data including description, attributes, variations (for variable products), tags, and all images. The product_id can be obtained from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Numeric product ID (e.g. '3061'). Obtain from search_products results. |

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

### list_categories

List all product categories with their IDs, names, slugs, descriptions, product counts, and images. Use the returned category IDs to filter products via the search_products endpoint's category parameter. Returns up to 100 categories in a single call.

**Estimated cost:** Metered

_No parameters required._

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

### search_products

Search and browse the product catalog with optional text search, category filtering, and pagination. Returns paginated product listings including pricing, availability, and category information. When no search or category filter is provided, returns all products ordered by the site's default. Pagination is controlled by page and per_page parameters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category ID to filter products. Obtain category IDs from the list_categories endpoint. |
| `page` | integer | No | Page number for pagination (starts at 1). |
| `per_page` | integer | No | Number of products per page (1-100). |
| `search` | string | No | Free-text search query to filter products by name or description (e.g. 'BPC', 'NAD'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alphaomegapeptide-com-api-82c643d2/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>","per_page":"<integer>","search":"<string>"}'
```
