# Suverse Scryfall Card Search

> Suverse Scryfall Card Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Search Magic: The Gathering cards using Scryfall query syntax, returning full card data including mana cost, oracle text, rarity, set info, images, market prices, and format legality.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-scryfall-card-search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-scryfall-card-search-98499a32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uYIU07-5lwSPdmctrDqq6

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 suverse-scryfall-card-search-98499a32 -d '<json body>'
```

Example prompt: Search for Magic: The Gathering cards that cost 3 or less mana and have 'flying' in their text using Scryfall query syntax — I want to see their mana costs, oracle text, rarity, and current market prices.

## When to prefer this

Use this endpoint when you need comprehensive Magic: The Gathering card data including images, market prices, and format legality in a single call. Prefer this over direct Scryfall API access when operating in a keyless payment-gated environment. Best suited for deck building tools, collection valuation, proxy printing, or any MTG card lookup workflow that requires rich card metadata.

## Known failure modes

- Invalid Scryfall query syntax returns an error or empty result set
- Card not found returns empty results
- Payment not processed (x402 payment required) returns 402 status
- Malformed request body returns validation error
- Rate limiting or server unavailability returns 5xx error

## How this service works

Search Magic: The Gathering cards via Scryfall query syntax. Returns mana cost, oracle text, rarity, set, images, market prices and format legality across all formats. Keyless.

## Output

Returns a structured response containing matched Magic: The Gathering cards with full details: mana cost, oracle text, rarity, set name and code, card image URLs, current market prices, and legality status across all major formats (Standard, Modern, Legacy, Vintage, Commander, etc.).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-scryfall-card-search-98499a32/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
