# Suno via Locus x402 – Get Lyrics Status

> Suno via Locus x402 – Get Lyrics 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-15).

Polls the status of a previously submitted lyrics generation task, returning the generated lyrics when ready.

## Facts

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

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-lyrics-status-84f3f1a2 -d '<json body>'
```

Example prompt: Check whether my Suno lyrics generation task with ID 'abc-12345' has finished and give me the lyrics if they're ready.

## When to prefer this

Use this endpoint after calling the Suno generate-lyrics endpoint to asynchronously retrieve the result. It is the correct polling mechanism when you have a taskId from a prior lyrics generation call and need to check completion status or retrieve the final lyrics output. Prefer this over re-triggering generation to avoid duplicate costs.

## Known failure modes

- Invalid or unknown taskId returns an error or empty data field
- Task still processing returns pending status with no lyrics yet
- Expired or cancelled task returns failure state
- Payment settlement failure results in a rejected request
- Malformed taskId (wrong format/type) causes 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 with a 'data' field containing the lyrics result (when complete), a 'success' boolean, payment settlement details (settled and authorized USDC amounts), and a request object with a unique ID and status URL for tracking.

## 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-lyrics-status-84f3f1a2/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)
