# Trading Card Batch Triage (GET)

> Trading Card Batch Triage (GET) is a paid API for AI agents from oracle.the-undesirables.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Accepts up to 20 comma-separated card image URLs and returns an AI-graded, profit-ranked triage showing expected ROI from professional grading for each card.

## Facts

- Endpoint: GET https://oracle.the-undesirables.com/api/v1/batch-triage
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trading-card-batch-triage-get-3bc259b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IPwmcYLcUgKCk_baVuygV

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 trading-card-batch-triage-get-3bc259b2
```

Example prompt: I have 5 Pokemon card images — can you triage all of them and tell me which ones are worth sending to PSA for grading, ranked by expected profit? Here are the URLs: https://example.com/card1.jpg, https://example.com/card2.jpg, https://example.com/card3.jpg, https://example.com/card4.jpg, https://example.com/card5.jpg

## When to prefer this

Use this GET endpoint when you have multiple trading cards (up to 20) to evaluate for grading profitability simultaneously and want a single ranked output. Prefer this over the single-card grading endpoint when batch processing a collection. The GET form is functionally identical to the POST variant and is suitable for URL-based workflows or agents that prefer query parameters over request bodies.

## Known failure modes

- More than 20 image URLs provided — request rejected or truncated
- Image URL is inaccessible or returns a non-image response — card skipped or error returned
- Unrecognized card or too low image quality for AI grading — low-confidence result returned
- Unsupported TCG game specified — fallback to Pokemon or error
- Payment not processed (x402) — 402 response blocking the call

## How this service works

Batch Card Triage: upload multiple card image URLs and get a profit-ranked grading triage. Each card is graded by AI, then scored by expected ROI from professional grading. Returns a ranked list sorted by highest expected profit first. Perfect for dealers and agents evaluating collections.

## Output

A profit-ranked list of card grading assessments — each card receives an AI-assigned condition grade and an expected ROI score from professional grading, with results ordered from highest to lowest profit potential.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "image_urls"
     ],
     "properties": {
      "game": {
       "type": "string",
       "description": "TCG game for grading context (default: Pokemon)"
      },
      "image_urls": {
       "type": "string",
       "description": "Comma-separated card image URLs (max 20)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status"
     ],
     "properties": {
      "data": {
       "type": "object"
      },
      "status": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "ranked": [],
   "total_cards": 5,
   "total_expected_profit": 125
  },
  "tool": "batch_triage",
  "status": "ok"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trading-card-batch-triage-get-3bc259b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracle.the-undesirables.com](https://www.zero.xyz/host/oracle.the-undesirables.com/llms.txt)
