GET /api/clip
Returns the raw clip data from Suno’s internal /api/clip/{id} endpoint for a given clip ID. Unlike /api/get, this response is not mapped to the AudioInfo format — it returns Suno’s full clip object directly, which contains additional internal fields.
This endpoint uses the
SUNO_COOKIE environment variable and does not support per-request cookie override via the Cookie header.Request
Query Parameters
The clip ID to retrieve.Example:
abc123Response
The raw clip object returned by Suno’s API. The exact shape of this object is determined by Suno’s internal API.The fields in this response are not normalized and may change without notice as Suno updates their platform. For a stable, normalized response, use
GET /api/get instead.Unique identifier for the clip.
Title of the clip.
URL of the audio file.
URL of the associated video file.
URL of the cover image.
Generation status of the clip.
The Suno model used to generate this clip.
Internal metadata object. Contains fields such as
prompt, tags, duration, type, gpt_description_prompt, and error_message.ISO 8601 timestamp of when the clip was created.
Error responses
If theid parameter is missing, the endpoint returns a 400 error:
