# Adorama — 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 adorama.com.

**Category:** E-commerce | **Website:** [www.adorama.com/l/Musical-Instruments/Guitars](https://www.adorama.com/l/Musical-Instruments/Guitars) | **Docs:** [parse.bot/marketplace/6b51ef95-0943-45b2-90f1-0c3841aeccbc/adorama-com-api](https://parse.bot/marketplace/6b51ef95-0943-45b2-90f1-0c3841aeccbc/adorama-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-adorama-com-api-6b51ef95/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_electric_guitar_detail

Retrieve detailed information about a specific electric guitar product by its SKU code. Returns full product details including all color/option variants with individual pricing and stock status, detailed feature highlights, and shipping information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sku` | string | Yes | Adorama product SKU code (e.g. FE0142811306, IBAZ22S2MGR). Available from list_electric_guitars results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-adorama-com-api-6b51ef95/get_electric_guitar_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sku":"<string>"}'
```

### list_electric_guitars

List electric guitar products from Adorama's catalog. Results are auto-iterated across pages (24 items per page). Supports sorting by relevancy, price, newest, or rating, and filtering by brand. Returns product summaries including pricing, stock status, and highlights.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Filter results by brand name (e.g. Fender, Ibanez, Gretsch, Charvel, EVH, Jackson, Schecter, Washburn). Omitting returns all brands. |
| `page` | integer | No | Page number for pagination (1-based). |
| `sort_by` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-adorama-com-api-6b51ef95/list_electric_guitars \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","page":"<integer>","sort_by":"<string>"}'
```
