# Classicfootballshirts — 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 Classic Football Shirts product listings by keyword or team and retrieve current prices, available sizes, stock status, and direct product links.

**Category:** E-commerce | **Website:** [classicfootballshirts.co.uk/](https://classicfootballshirts.co.uk/) | **Docs:** [parse.bot/marketplace/d809680c-4aa2-4729-adf5-2139b30d3832/classicfootballshirts-co-uk-api](https://parse.bot/marketplace/d809680c-4aa2-4729-adf5-2139b30d3832/classicfootballshirts-co-uk-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-classicfootballshirts-co-uk-api-d809680c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_products_by_team

Get all football shirt products for a specific team. Returns matching products with prices, sizes, availability, and metadata. Uses the same search infrastructure as search_products but semantically scoped to a team name.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. |
| `team` | string | Yes | Team name to search for (e.g. 'Arsenal', 'Liverpool', 'Barcelona', 'Manchester United'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-classicfootballshirts-co-uk-api-d809680c/get_products_by_team \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","team":"<string>"}'
```

### search_products

Full-text search over the Classic Football Shirts catalog. Returns products matching the query keyword with prices, sizes, availability, and metadata. Results are capped by the limit parameter. The search matches product names, teams, seasons, and brands.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. |
| `query` | string | Yes | Search keyword to find products (e.g. 'Arsenal', 'Liverpool', 'Barcelona', 'MLS', 'adidas'). |

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