Clipform

List creative assets

Returns available sound effects, animation presets, and fonts for use in compositions and videos.

GET
/creative/assets

Authorization

Authorization
Required
Bearer <token>

API key (cf_*) passed as Bearer token

In: header

Query Parameters

typestring

Filter by asset type

Default: "all"Value in: "sfx" | "animation" | "font" | "all"
curl -X GET "https://api.clipform.io/v1/creative/assets?type=sfx" \
  -H "Authorization: Bearer <token>"

Asset listings

{
  "sfx": [
    {}
  ],
  "animations": [
    {}
  ],
  "fonts": [
    {}
  ]
}