# 1-800-Flowers — 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 1-800-Flowers products and instantly retrieve detailed SKU-level pricing information to compare costs and availability across their catalog. Access real-time product data to make informed purchasing decisions or integrate current pricing into your applications.

**Category:** E-commerce | **Website:** [www.1800flowers.com/](https://www.1800flowers.com/) | **Docs:** [parse.bot/marketplace/4f2bc6d0-f366-4f72-b09f-f694e0a567dc/1800flowers-com-api](https://parse.bot/marketplace/4f2bc6d0-f366-4f72-b09f-f694e0a567dc/1800flowers-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-1800flowers-com-api-4f2bc6d0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_pricing

Retrieve detailed SKU-level pricing for a specific product. Returns retail and sale prices for each size/variant SKU. The part_number can be obtained from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `part_number` | string | Yes | Product part number (e.g. '1001-P-225410'). Available from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1800flowers-com-api-4f2bc6d0/get_product_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"part_number":"<string>"}'
```

### search_products

Full-text search over the 1-800-Flowers product catalog. Returns paginated products with price ranges, delivery type, and product URLs. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `page_size` | integer | No | Number of products per page (max 36). |
| `query` | string | No | Search term to find products (e.g. 'roses', 'sunflowers', 'birthday'). |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1800flowers-com-api-4f2bc6d0/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>","sort":"<string>"}'
```
