# Suno via Locus x402 — Get Music Status

> Suno via Locus x402 — Get Music Status is a paid API for AI agents from suno.x402.paywithlocus.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Polls the status of a previously submitted AI music generation task and returns the result when ready

## Facts

- Endpoint: POST https://suno.x402.paywithlocus.com/suno/get-music-status
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suno-via-locus-x402-get-music-status-86447973
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_APvMRhGWA0xx9TIYcwah-

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 suno-via-locus-x402-get-music-status-86447973 -d '<json body>'
```

Example prompt: Check if my Suno music generation task is done and get the result — the task ID is abc123xyz.

## When to prefer this

Use this endpoint after calling the Suno generate-music endpoint to asynchronously retrieve results. This is the second step in a two-phase music generation workflow: submit the generation job first, then poll this endpoint with the returned taskId until the song is ready. Prefer this over re-submitting a generation request, as it fetches an already-in-progress or completed task without incurring additional generation costs.

## Known failure modes

- Invalid or expired taskId returns an error or empty data object
- Task still in progress returns a pending/incomplete status rather than final output
- Payment failure results in a 402 response before the status check is executed
- Network timeout if the polling request takes too long
- Malformed taskId format may cause a validation error

## How this service works

AI music generation — create full songs, generate lyrics, and build custom music tracks with state-of-the-art AI models. Supports custom styles, vocals, and instrumental modes.

## Output

Returns a JSON object containing the task result data (generated music content, audio URLs, or lyrics), payment settlement details (settled and authorized USDC amounts), and a request status object with a unique request ID and status URL. The 'success' boolean indicates whether the retrieval succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "taskId": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suno-via-locus-x402-get-music-status-86447973/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from suno.x402.paywithlocus.com](https://www.zero.xyz/host/suno.x402.paywithlocus.com/llms.txt)
