# Suverse iTunes & App Store Catalog Search

> Suverse iTunes & App Store Catalog Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-16).

Searches Apple's iTunes and App Store catalogue to return metadata including names, release dates, genres, prices, previews, and artwork for music, podcasts, movies, TV shows, books, and apps.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-itunes-catalog-search
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-itunes-app-store-catalog-search-d715564c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J-qs3v0vuDIkRmd1PMl3Q

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-itunes-app-store-catalog-search-d715564c -d '<json body>'
```

Example prompt: Search the iTunes catalog for the podcast 'Lex Fridman Podcast' and give me its artwork, latest release date, and genre.

## When to prefer this

Choose this endpoint when you need structured metadata from Apple's iTunes or App Store catalog — especially when you need artwork URLs, preview links, pricing, or genre data for music, podcasts, movies, TV, books, or apps. Prefer this over general web search when you specifically need Apple ecosystem catalog data with structured fields rather than unstructured web results. It is keyless and requires only a per-call USDC micropayment.

## Known failure modes

- No results found for obscure or misspelled queries — returns empty results array
- Rate limiting or upstream Apple API unavailability may cause timeouts
- Ambiguous queries (e.g. common names) may return unrelated items
- Payment failure via x402 protocol results in 402 response before execution
- Malformed POST body structure causes input validation error

## How this service works

Search Apple's iTunes and App Store catalogue for music, podcasts, movies, TV, books and apps. Returns names, release dates, genre, price, previews and artwork. Keyless.

## Output

Returns a JSON object with catalog entries matching the search query, each containing fields such as track or item name, artist or developer name, release date, genre, price, preview URL, and high-resolution artwork URL. Multiple results may be returned ranked by relevance.

## 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-itunes-app-store-catalog-search-d715564c/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)
