Hedra · Arazzo Workflow

Hedra — Generate an avatar (talking-head) video

Version 1.0.0

Upload an image and an audio track, submit an avatar video generation, and poll for the result.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyArtificial IntelligenceGenerative AIVideo GenerationImage-GenerationAudio GenerationText-to-SpeechAvatarsMediaMachine-LearningArazzoWorkflows

Provider

hedra

Workflows

generateAvatarVideo
Reserve+upload an image and an audio asset, submit an avatar video generation, poll to completion.
Uses Hedra's Character-3 / Avatar model. Uploads a portrait image and a driving audio track, then submits a video generation conditioned on both (start_keyframe_id + audio_id).
6 steps inputs: api_key, audio_name, image_name, model_slug outputs: generation_id, url

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Hedra — Generate an avatar (talking-head) video
  version: 1.0.0
  summary: Upload an image and an audio track, submit an avatar video generation, and poll for the result.
  x-realizes-capability-ids:
  - BC-3700
  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-3700
      capability_name: Content Origination & Production Management
      spec: hedra-public-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: publicApi
  url: ../openapi/hedra-public-api-openapi.yml
  type: openapi
workflows:
- workflowId: generateAvatarVideo
  summary: Reserve+upload an image and an audio asset, submit an avatar video generation, poll to completion.
  description: >-
    Uses Hedra's Character-3 / Avatar model. Uploads a portrait image and a driving audio track,
    then submits a video generation conditioned on both (start_keyframe_id + audio_id).
  inputs:
    type: object
    required: [api_key, image_name, audio_name, model_slug]
    properties:
      api_key: {type: string}
      image_name: {type: string}
      audio_name: {type: string}
      model_slug: {type: string}
  steps:
  - stepId: reserveImage
    operationId: create_asset_public_assets_post
    parameters:
    - {name: X-API-Key, in: header, value: $inputs.api_key}
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.image_name
        type: image
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      image_asset_id: $response.body#/id
  - stepId: uploadImage
    operationId: upload_asset_public_assets__id__upload_post
    parameters:
    - {name: X-API-Key, in: header, value: $inputs.api_key}
    - {name: id, in: path, value: $steps.reserveImage.outputs.image_asset_id}
    successCriteria:
    - condition: $statusCode == 200
  - stepId: reserveAudio
    operationId: create_asset_public_assets_post
    parameters:
    - {name: X-API-Key, in: header, value: $inputs.api_key}
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.audio_name
        type: audio
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      audio_asset_id: $response.body#/id
  - stepId: uploadAudio
    operationId: upload_asset_public_assets__id__upload_post
    parameters:
    - {name: X-API-Key, in: header, value: $inputs.api_key}
    - {name: id, in: path, value: $steps.reserveAudio.outputs.audio_asset_id}
    successCriteria:
    - condition: $statusCode == 200
  - stepId: submitAvatar
    operationId: generate_asset_public_generations_post
    parameters:
    - {name: X-API-Key, in: header, value: $inputs.api_key}
    requestBody:
      contentType: application/json
      payload:
        type: video
        model_slug: $inputs.model_slug
        start_keyframe_id: $steps.reserveImage.outputs.image_asset_id
        audio_id: $steps.reserveAudio.outputs.audio_asset_id
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      generation_id: $response.body#/id
  - stepId: pollStatus
    operationId: get_status_public_generations__generation_id__status_get
    parameters:
    - {name: X-API-Key, in: header, value: $inputs.api_key}
    - {name: generation_id, in: path, value: $steps.submitAvatar.outputs.generation_id}
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.status == "complete"
      type: jsonpath
    outputs:
      url: $response.body#/url
  outputs:
    generation_id: $steps.submitAvatar.outputs.generation_id
    url: $steps.pollStatus.outputs.url

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/hedra-generate-avatar-video"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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