# Todocoleccion — 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 for football cards on todocoleccion.net and instantly access pricing information, market statistics, and listing details to find the best deals on your favorite cromos. Compare prices across available cards to make informed collecting decisions.

**Category:** Marketplaces | **Website:** [www.todocoleccion.net/](https://www.todocoleccion.net/) | **Docs:** [parse.bot/marketplace/2c897eb0-4cae-49a8-ad77-a121bc850bf5/todocoleccion-net-api](https://parse.bot/marketplace/2c897eb0-4cae-49a8-ad77-a121bc850bf5/todocoleccion-net-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-todocoleccion-net-api-2c897eb0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_football_cards

Search for football cards on todocoleccion.net and return listings with their listed prices plus price statistics (average, min, max) for the current page. Results are paginated at 30 items per page. Use the page parameter to paginate through results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | string | No | Page number for pagination, starting at 1. Each page returns up to 30 items. |
| `query` | string | No | Search query for football cards (e.g. 'cromos futbol messi', 'cromos futbol liga este'). |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-todocoleccion-net-api-2c897eb0/search_football_cards \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<string>","query":"<string>","sort":"<string>"}'
```
