mirrored listing x402 eip155:8453

Generate a music track

Generate a music track. Poll statusUrl, download at resultUrl. SFW only.

Do you run api.havenagent.ai? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
100000 (raw units)
price
13
calls / 30d
1
unique payers
2026-09-15
updated

Provider

api.havenagent.ai · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xa8f73f2fDFDa46f6591759458614BC2883529d77",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "100000",
    "maxTimeoutSeconds": 600
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "durationSeconds": 20,
          "prompt": "warm lo-fi piano loop with vinyl crackle, relaxed tempo"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "etaSeconds": 60,
          "jobId": "00000000-0000-0000-0000-000000000000",
          "kind": "music",
          "pollBudgetSeconds": 900,
          "resultUrl": "https://api.havenagent.ai/x402/api/v1/music/jobs/00000000-0000-0000-0000-000000000000/result",
          "status": "queued",
          "statusUrl": "https://api.havenagent.ai/x402/api/v1/music/jobs/00000000-0000-0000-0000-000000000000"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "durationSeconds": {
                  "default": 20,
                  "maximum": 60,
                  "minimum": 1,
                  "type": "number"
                },
                "lyrics": {
                  "maxLength": 5000,
                  "type": "string"
                },
                "prompt": {
                  "maxLength": 2000,
                  "minLength": 1,
                  "type": "string"
                }
              },
              "required": [
                "prompt"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "aiDisclosure": {
                  "properties": {
                    "aiGenerated": {
                      "type": "boolean"
                    },
                    "embeddedIn": {
                      "type": "string"
                    },
                    "label": {
                      "type": "string"
                    },
                    "statement": {
                      "type": "string"
                    },
                    "termsUrl": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "aiGenerated",
                    "statement",
                    "termsUrl"
                  ],
                  "type": "object"
                },
                "etaSeconds": {
                  "type": "number"
                },
                "jobId": {
                  "type": "string"
                },
                "kind": {
                  "enum": [
                    "music",
                    "music_premium",
                    "image_generate",
                    "image_edit",
                    "image_upscale",
                    "image_restore",
                    "video",
                    "video_sound",
                    "world",
                    "phone_call"
                  ],
                  "type": "string"
                },
                "pollBudgetSeconds": {
                  "type": "number"
                },
                "resultUrl": {
                  "type": "string"
                },
                "status": {
                  "type": "string"
                },
                "statusUrl": {
                  "type": "string"
                }
              },
              "required": [
                "jobId",
                "status",
                "statusUrl",
                "resultUrl",
                "etaSeconds",
                "pollBudgetSeconds"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.havenagent.ai/x402/api/v1/music"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.havenagent.ai/x402/api/v1/music");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.havenagent.ai/x402/api/v1/music")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/6575.json, and this resource appears in /discovery/resources and /discovery/search.