Vapi · Arazzo Workflow

Vapi Create and Verify Assistant

Version 1.0.0

Create a voice AI assistant and read it back to confirm it was provisioned.

1 workflow 1 source API 1 provider
View Spec View on GitHub Artificial IntelligenceVoice AIVoice AgentsConversational AITelephonyReal-TimeTranscriptionText-to-SpeechLLMAgentsMCPArazzoWorkflows

Provider

vapi-ai

Workflows

create-assistant
Create a Vapi assistant and verify it by reading it back.
Provisions a new voice AI assistant from a model, voice, and first message, then retrieves the same assistant by id to confirm it exists.
2 steps inputs: apiToken, firstMessage, model, name, systemPrompt, voiceId outputs: assistantId, assistantName
1
createAssistant
Create a new voice AI assistant with an OpenAI model, an Azure voice, and an opening message.
2
getAssistant
Read the assistant back by its id to confirm it was created and persisted.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Vapi Create and Verify Assistant
  summary: Create a voice AI assistant and read it back to confirm it was provisioned.
  description: >-
    The foundational Vapi flow. It creates a voice AI assistant with a model,
    voice, and first message, then immediately fetches the assistant by its
    returned id to confirm the configuration persisted. Every step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: assistantsApi
  url: ../openapi/vapi-ai-assistants-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-assistant
  summary: Create a Vapi assistant and verify it by reading it back.
  description: >-
    Provisions a new voice AI assistant from a model, voice, and first message,
    then retrieves the same assistant by id to confirm it exists.
  inputs:
    type: object
    required:
    - apiToken
    - name
    - firstMessage
    - systemPrompt
    properties:
      apiToken:
        type: string
        description: Vapi private API key used as a Bearer token.
      name:
        type: string
        description: A human-readable name for the assistant.
      firstMessage:
        type: string
        description: The first message the assistant speaks when a call connects.
      systemPrompt:
        type: string
        description: The system prompt that shapes the assistant's behavior.
      model:
        type: string
        description: The OpenAI model id to drive the assistant.
        default: gpt-5.4
      voiceId:
        type: string
        description: The Azure voice id the assistant speaks with.
        default: andrew
  steps:
  - stepId: createAssistant
    description: >-
      Create a new voice AI assistant with an OpenAI model, an Azure voice,
      and an opening message.
    operationId: AssistantController_create
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        firstMessage: $inputs.firstMessage
        model:
          provider: openai
          model: $inputs.model
          messages:
          - role: system
            content: $inputs.systemPrompt
        voice:
          provider: azure
          voiceId: $inputs.voiceId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      assistantId: $response.body#/id
  - stepId: getAssistant
    description: >-
      Read the assistant back by its id to confirm it was created and persisted.
    operationId: AssistantController_findOne
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: id
      in: path
      value: $steps.createAssistant.outputs.assistantId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assistantId: $response.body#/id
      assistantName: $response.body#/name
  outputs:
    assistantId: $steps.getAssistant.outputs.assistantId
    assistantName: $steps.getAssistant.outputs.assistantName

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/vapi-ai-create-assistant-workflow"
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.