Glio · Arazzo Workflow

Glio - generate media and retrieve result

Version 1.0.0

Create an AI media-generation job on Glio and poll until it completes, then read the result. Uses Glio's asynchronous job workflow.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyArtificial IntelligenceMachine-LearningMedia GenerationVideo GenerationImage-GenerationAudio GenerationText-to-SpeechLarge Language ModelsGenerative AIAPI AggregatorDeveloper ToolsArazzoWorkflows

Provider

glio

Workflows

generateMediaAndGetResult
Create a generation job, poll to completion, and return the result.
Submits a media-generation job for a chosen model, polls job status every 10-15 seconds until it reaches a terminal state, and surfaces the result.
2 steps inputs: model, params outputs: jobId, result, status
1
createJob
Create the generation job.
2
getJob
Poll the job until it is completed or failed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Glio - generate media and retrieve result
  version: 1.0.0
  description: >-
    Create an AI media-generation job on Glio and poll until it completes, then
    read the result. Uses Glio's asynchronous job workflow.
sourceDescriptions:
- name: jobsApi
  url: ../openapi/glio-jobs-api-openapi.yml
  type: openapi
workflows:
- workflowId: generateMediaAndGetResult
  summary: Create a generation job, poll to completion, and return the result.
  description: >-
    Submits a media-generation job for a chosen model, polls job status every
    10-15 seconds until it reaches a terminal state, and surfaces the result.
  inputs:
    type: object
    properties:
      model:
        type: string
        description: Model alias, e.g. kling-v2.6-pro-t2v
      params:
        type: object
        description: Model-specific parameters (see /openapi/models/{alias}.json)
    required: [model]
  steps:
  - stepId: createJob
    description: Create the generation job.
    operationId: createJob
    requestBody:
      contentType: application/json
      payload:
        model: $inputs.model
        params: $inputs.params
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      jobId: $response.body#/id
  - stepId: getJob
    description: Poll the job until it is completed or failed.
    operationId: getJob
    parameters:
    - name: job_id
      in: path
      value: $steps.createJob.outputs.jobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      result: $response.body#/result
  outputs:
    jobId: $steps.createJob.outputs.jobId
    status: $steps.getJob.outputs.status
    result: $steps.getJob.outputs.result

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/glio-generate-media"
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.