1. Workflows
BeatAPI
  • Workflows
    • List launch workflows
      GET
  • Music Video
    • Create a Music Video workflow task
      POST
  • Ecommerce Video
    • Create an Ecommerce Video workflow task
      POST
  • Tasks
    • Poll task status
      GET
  • Usage
    • Get account usage and concurrency
      GET
  • Files
    • Upload a file for workflow inputs
      POST
  • Webhooks
    • List webhook endpoints
      GET
    • Create a webhook endpoint
      POST
    • Get a webhook endpoint
      GET
    • Update a webhook endpoint
      PATCH
    • Delete a webhook endpoint
      DELETE
  • Schemas
    • Workflow
    • TaskStatus
    • TaskUsage
    • Task
    • File
    • WebhookEndpoint
    • WebhookEvent
    • WorkflowList
    • WorkflowListResponse
    • TaskResponse
    • Usage
    • UsageResponse
    • FileResponse
    • WebhookEndpointList
    • WebhookEndpointListResponse
    • WebhookEndpointResponse
    • DeleteResponse
    • Error
  1. Workflows

List launch workflows

GET
/v1/workflows

Request

None

Responses

🟢200
application/json
Workflow list
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.beatapi.io/v1/workflows'
Response Response Example
{
    "data": {
        "object": "list",
        "data": [
            {
                "id": "music-video",
                "object": "workflow",
                "name": "Music Video API",
                "description": "Generate short music video clips from audio, lyrics, and visual direction."
            },
            {
                "id": "ecommerce-video",
                "object": "workflow",
                "name": "Ecommerce Video API",
                "description": "Generate product ad videos from product images and a short creative brief."
            }
        ]
    }
}
Modified at 2026-06-25 13:50:22
Next
Create a Music Video workflow task
Built with