# iTunes Catalog Lookup via GoCreative

> iTunes Catalog Lookup via GoCreative is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Searches and looks up the iTunes/Apple catalog for music, apps, podcasts, and movies, returning metadata like titles, artists, artwork, and store links.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/itunes/:var1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/itunes-catalog-lookup-via-gocreative-62981594
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_72hOxBpzZCiyifd1wY3Ut

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 itunes-catalog-lookup-via-gocreative-62981594
```

Example prompt: Can you look up the iTunes catalog entry for 'Serial' podcast — I need the artwork, store link, and any description Apple has for it?

## When to prefer this

Choose this endpoint when you need Apple-specific catalog metadata — iTunes IDs, Apple Podcasts links, App Store details, or Apple Music artwork — especially in a keyless, pay-per-call context without API key management. Prefer over raw iTunes API when you want unified x402 micropayment billing alongside other GoCreative data tools.

## Known failure modes

- Unknown or invalid iTunes ID returns empty results or 404
- Search term too generic returns irrelevant or zero results
- Region-restricted content may not appear depending on storefront
- Rate limiting or payment failure returns 402 or 429 error
- Malformed query string causes 400 bad request

## How this service works

Searches the iTunes catalog for music, apps, podcasts, and movies, returning titles, artists, artwork, and store links. For media, recommendation, and content-catalog agents. SEO Keywords: iTunes search API, Apple Music lookup, podcast search, app store metadata, media catalog. Keyless, pay-per-call USDC on Base/Solana, no API key, no signup.

## Output

Returns structured metadata from the Apple iTunes catalog including item title, artist or developer name, artwork URLs (multiple resolutions), genre, release date, price, content advisory rating, and a direct iTunes/Apple Store link for the matched item.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/itunes-catalog-lookup-via-gocreative-62981594/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
