Vyond · Arazzo Workflow

Turbo text-to-video with a webhook subscription

Version 1.0.0

Register a webhook subscription for Turbo events, submit a text prompt to Turbo, and poll the task as a fallback until it reaches a terminal status.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub VideoAnimationVideo GenerationArtificial IntelligenceE-LearningLearning and DevelopmentContent GenerationSCIMIdentity ProvisioningWebhookEnterpriseMediaArazzoWorkflows

Provider

vyond

Workflows

turbo-generate-with-webhook
Prompt in, finished video out, with event delivery registered up front.
Vyond states Turbo webhook events are always emitted for every task, so the subscription can be registered before the task completes. Requires a Turbo license on the account; without one every Turbo call returns 403. Step 2 spends credits and accepts no Idempotency-Key.
3 steps inputs: mode, prompt, webhookName, webhookUrl outputs: creditConsumed, downloadUrl, turboId, webhookId
1
create-webhook
Register the subscription. The create response is the ONLY time the secret is returned — store it, it is required to verify every delivery.
2
create-turbo
Submit the prompt. SPENDS CREDITS. A 422 means malware was detected in an uploaded reference file — terminal, do not resubmit.
3
poll-turbo
Fallback to the webhook. Poll until status is completed, failed or cancelled. turbo_generation.cancelled is NOT in the subscribable events enum, so polling is the only reliable way to observe a cancellation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Turbo text-to-video with a webhook subscription
  version: 1.0.0
  summary: >-
    Register a webhook subscription for Turbo events, submit a text prompt to
    Turbo, and poll the task as a fallback until it reaches a terminal status.
  x-realizes-capability-ids:
  - BC-4270.80
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4270.80
      capability_name: Webhook & Event Subscription Management
      spec: vyond-webhook-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: turboApi
  url: ../openapi/vyond-turbo-api-openapi.yml
  type: openapi
- name: webhookApi
  url: ../openapi/vyond-webhook-api-openapi.yml
  type: openapi
workflows:
- workflowId: turbo-generate-with-webhook
  summary: Prompt in, finished video out, with event delivery registered up front.
  description: >-
    Vyond states Turbo webhook events are always emitted for every task, so the
    subscription can be registered before the task completes. Requires a Turbo
    license on the account; without one every Turbo call returns 403. Step 2 spends
    credits and accepts no Idempotency-Key.
  inputs:
    type: object
    required: [webhookUrl, prompt]
    properties:
      webhookUrl:
        type: string
        format: uri
        description: HTTPS endpoint that will receive the signed events.
      webhookName:
        type: string
        default: turbo-events
      prompt:
        type: string
        minLength: 1
        maxLength: 10000
      mode:
        type: string
        enum: [STILL_IMAGE, VIDEO_CLIP]
        default: STILL_IMAGE
  steps:
  - stepId: create-webhook
    description: >-
      Register the subscription. The create response is the ONLY time the secret is
      returned — store it, it is required to verify every delivery.
    operationId: WebhookController.createWebhook
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.webhookName
        url: $inputs.webhookUrl
        events:
        - turbo_generation.succeeded
        - turbo_generation.failed
        status: enabled
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookId: $response.body#/webhookId
      webhookSecret: $response.body#/secret
  - stepId: create-turbo
    description: >-
      Submit the prompt. SPENDS CREDITS. A 422 means malware was detected in an
      uploaded reference file — terminal, do not resubmit.
    operationId: TurboController.createTurbo
    requestBody:
      contentType: application/json
      payload:
        prompt: $inputs.prompt
        mode: $inputs.mode
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      turboId: $response.body#/id
  - stepId: poll-turbo
    description: >-
      Fallback to the webhook. Poll until status is completed, failed or cancelled.
      turbo_generation.cancelled is NOT in the subscribable events enum, so polling
      is the only reliable way to observe a cancellation.
    operationId: TurboController.getTurbo
    parameters:
    - name: id
      in: path
      value: $steps.create-turbo.outputs.turboId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      downloadUrl: $response.body#/downloadUrl
      creditConsumed: $response.body#/creditConsumed
      expiredAt: $response.body#/expiredAt
      turboThreadUrl: $response.body#/turboThreadUrl
  outputs:
    webhookId: $steps.create-webhook.outputs.webhookId
    turboId: $steps.create-turbo.outputs.turboId
    downloadUrl: $steps.poll-turbo.outputs.downloadUrl
    creditConsumed: $steps.poll-turbo.outputs.creditConsumed

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/vyond-turbo-with-webhook"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.