Bytez · Arazzo Workflow

Discover and run a Bytez model

Version 1.0.0

List models for a task, pick one, and run serverless inference.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyArtificial IntelligenceMachine-LearningModel InferenceLLMOpen Source AIDevelopersArazzoWorkflows

Provider

bytez

Workflows

discoverAndRunModel
Find a chat model via getModels then run it with runModel.
Lists available models for a task, selects the first model id, then runs an inference request against it and returns the model output.
2 steps inputs: task, text outputs: modelId, result
1
listModels
Retrieve models available for the requested task.
2
runModel
Run inference on the selected model.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Discover and run a Bytez model
  version: 1.0.0
  summary: List models for a task, pick one, and run serverless inference.
sourceDescriptions:
- name: modelsApi
  url: ../openapi/bytez-models-api-openapi.yml
  type: openapi
workflows:
- workflowId: discoverAndRunModel
  summary: Find a chat model via getModels then run it with runModel.
  description: >-
    Lists available models for a task, selects the first model id, then runs an
    inference request against it and returns the model output.
  inputs:
    type: object
    properties:
      task:
        type: string
        default: chat
      text:
        type: string
        default: Hello from API Evangelist
  steps:
  - stepId: listModels
    description: Retrieve models available for the requested task.
    operationId: getModels
    parameters:
    - name: task
      in: query
      value: $inputs.task
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstModelId: $response.body#/output/0/modelId
  - stepId: runModel
    description: Run inference on the selected model.
    operationId: runModel
    parameters:
    - name: modelId
      in: path
      value: $steps.listModels.outputs.firstModelId
    requestBody:
      contentType: application/json
      payload:
        text: $inputs.text
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      result: $response.body#/output
  outputs:
    modelId: $steps.listModels.outputs.firstModelId
    result: $steps.runModel.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/bytez-discover-and-run"
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.