Gridspace · Arazzo Workflow

Pull a call's full record

Version 1.0.0

List recent conversations, then fetch one call's details, transcript, and recording.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyVoice AIConversational AIVoice AgentsSpeech RecognitionTelephonySMSContact CenterRegulated IndustriesHealthcareArazzoWorkflows

Provider

gridspace

Workflows

pull-call-record
Find a recent call by number and download its metadata, transcript, and recording.
Lists conversations filtered by from_number, takes the first call, and retrieves its details, transcript, and WAV recording.
4 steps inputs: date_from, from_number outputs: call_id, duration_sec
2
details

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Pull a call's full record
  version: 1.0.0
  summary: List recent conversations, then fetch one call's details, transcript, and recording.
sourceDescriptions:
- name: conversationsApi
  url: ../openapi/gridspace-conversations-api-openapi.yml
  type: openapi
workflows:
- workflowId: pull-call-record
  summary: Find a recent call by number and download its metadata, transcript, and recording.
  description: >-
    Lists conversations filtered by from_number, takes the first call, and retrieves its
    details, transcript, and WAV recording.
  inputs:
    type: object
    properties:
      from_number:
        type: string
        description: Caller number in E.164 (e.g. +15551234567).
      date_from:
        type: string
        description: ISO 8601 lower bound.
  steps:
  - stepId: list
    operationId: listConversations
    parameters:
    - name: from_number
      in: query
      value: $inputs.from_number
    - name: date_from
      in: query
      value: $inputs.date_from
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      call_id: $response.body.conversations[0].call_id
  - stepId: details
    operationId: getConversation
    parameters:
    - name: call_id
      in: path
      value: $steps.list.outputs.call_id
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      direction: $response.body.direction
      duration_sec: $response.body.duration_sec
  - stepId: transcript
    operationId: getConversationTranscript
    parameters:
    - name: call_id
      in: path
      value: $steps.list.outputs.call_id
    successCriteria:
    - condition: $statusCode == 200
  - stepId: recording
    operationId: getConversationRecording
    parameters:
    - name: call_id
      in: path
      value: $steps.list.outputs.call_id
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    call_id: $steps.list.outputs.call_id
    duration_sec: $steps.details.outputs.duration_sec

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/gridspace-pull-call-record"
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.