# Card Comps — Hot Sports Cards Market Data

> Card Comps — Hot Sports Cards Market Data is a paid API for AI agents from eager-marvel-a2g2.here.now, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a ranked list of the hottest trending sports cards based on current market activity and comparables data

## Facts

- Endpoint: GET https://eager-marvel-a2g2.here.now/hot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/card-comps-hot-sports-cards-market-data-163587f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VFog374h1nuZE6NHQa1Ln

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability card-comps-hot-sports-cards-market-data-163587f9
```

Example prompt: Pull the top 30 hottest sports cards from Card Comps right now so I can see what's trending in the market.

## When to prefer this

Choose this endpoint when you need a real-time ranked list of trending or hot sports cards with market comparables, especially for resale research, collection management, or market monitoring. It is pay-per-call via x402 on Base network (USDC), making it ideal for agents that need on-demand sports card market intelligence without a subscription. Prefer this over general sports data APIs when the specific focus is collectible card market movement and pricing comps.

## Known failure modes

- Payment failure on Base network — USDC payment not confirmed, request rejected
- Invalid `limit` parameter — value outside 1-40 range may cause error or fallback to default of 20
- Empty items array — no hot cards data available at query time
- Network timeout — endpoint at ephemeral hostname may be temporarily unreachable
- Rate limiting — rapid successive calls may be throttled

## How this service works

A pay per call service providing sports card market research data on the Base network.

## Output

A JSON object containing a `paid` boolean confirming successful payment, an `items` array of hot sports card records with market comparables data, and a `returned` integer indicating how many items were returned (up to 40).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number",
       "description": "Max hot items to return, 1-40. Default 20."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "paid": true,
  "items": [],
  "returned": 20
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/card-comps-hot-sports-cards-market-data-163587f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eager-marvel-a2g2.here.now](https://www.zero.xyz/host/eager-marvel-a2g2.here.now/llms.txt)
