Finetuning.aiFinetuning.ai

GET /v1/sound-effects/:id/license

Download the generation certificate PDF for a sound effect

Download the generation certificate for one of your sound effects — the same formal, single-page PDF as track certificates, issued by Riku AI LLC and confirming the sound effect was generated by you on Finetuning.

One certificate covers the whole sound-effect request; the title and duration on the certificate come from the request's first clip.

Request

GET https://pub.finetuning.ai/v1/sound-effects/:id/license

Headers

HeaderTypeRequiredDescription
X-API-KeystringYesYour API key

Path parameters

ParameterTypeDescription
idstringThe sound effect ID (e.g., sfx_abc123)

Example

curl https://pub.finetuning.ai/v1/sound-effects/sfx_abc123/license \
  -H "X-API-Key: ft_live_your_key_here" \
  -o certificate.pdf

Response

The response body is the PDF binary (Content-Type: application/pdf); the filename in Content-Disposition carries the certificate number. The certificate lists the AI model as Stable Audio, includes the prompt and requested settings, and carries the same permanent certificate number and public verification link as track certificates — see track certificates for the full contents.

Errors

Errors are returned as JSON in the standard error shape.

CodeStatusDescription
MISSING_API_KEY401X-API-Key header was not provided
INVALID_API_KEY401API key is malformed, revoked, or does not exist
NOT_READY400The sound effect is not completed yet
PAID_PLAN_REQUIRED403Certificates require a Plus, Pro, or Lifetime plan
NOT_FOUND404No sound effect with this ID in your account
INTERNAL_ERROR500Unexpected server error

On this page