# Comc — 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 and browse sports card listings from COMC's marketplace to find specific cards, compare prices, and discover available trading cards for sale. Filter through thousands of collectible card offerings to locate rare items and track inventory across the platform.

**Category:** Marketplaces | **Website:** [www.comc.com/](https://www.comc.com/) | **Docs:** [parse.bot/marketplace/9e6225ee-52f3-42a2-bf13-b7af7d68c662/comc-com-api](https://parse.bot/marketplace/9e6225ee-52f3-42a2-bf13-b7af7d68c662/comc-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-comc-com-api-9e6225ee/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_listings

Search for sports card listings on COMC by keyword. Returns paginated results sorted by Highest SRP (Suggested Retail Price). Each page returns up to 100 listings with card details, pricing, and seller availability. Supports optional category filtering (e.g. Baseball, Basketball, Football, Hockey), grading company filtering (e.g. PSA, BGS, SGC), and listing type filtering (auction or buy_now). When query is omitted, browses all listings matching the applied filters. Use the page parameter to paginate through results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Sport category filter. When omitted, searches across all categories. Observed values include Baseball, Basketball, Football, Hockey, MultiSport. |
| `grader` | string | No | Grading company filter. When omitted, returns all listings regardless of grading. Observed values include PSA, BGS, SGC, CGC, CSG. |
| `listing_type` | string | No | Listing format filter. When omitted, returns both auction and buy-now listings. |
| `page` | integer | No | Page number for pagination (1-indexed). Each page contains up to 100 listings. |
| `query` | string | No | Search query for cards (e.g. player name, set name, card number). When omitted, returns all listings matching other filters. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-comc-com-api-9e6225ee/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","grader":"<string>","listing_type":"<string>","page":"<integer>","query":"<string>"}'
```
