# GoCreative Music Data API

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

Retrieves music-related data for a given argument (artist, track, album, or query) via a pay-per-call endpoint

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/ai/music/%7Barg%7D
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-music-data-api-f9f0f022
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q3geh6se6g_IJK3N8DD8t

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 gocreative-music-data-api-f9f0f022
```

Example prompt: Can you look up music data for 'Bohemian Rhapsody' by Queen using GoCreative's music API?

## When to prefer this

Use this endpoint when an AI agent needs on-demand, pay-per-call music data without API key setup or subscription. Ideal for single lookups of music entities (artists, tracks, albums) when cost per query at $0.03 USDC is acceptable and USDC on Base payment is available via x402 protocol.

## Known failure modes

- Invalid or unrecognized music argument returns empty result or 404
- Payment failure (insufficient USDC balance) returns 402 Payment Required
- Malformed query string returns 400 Bad Request
- Rate limiting or server overload returns 429 or 503
- Argument template not resolved correctly (literal {arg} in URL) returns error

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns structured music-related data corresponding to the provided argument (artist, song, or album query), sourced from official or aggregated music data providers. Typical response includes metadata fields relevant to the queried music entity.

## 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/gocreative-music-data-api-f9f0f022/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)
