Sensible · Arazzo Workflow

Sensible Sync Extract Then Spreadsheet

Version 1.0.0

Synchronously extract a document, then convert that extraction to a downloadable Excel spreadsheet.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

sensible-so

Workflows

sync-extract-then-spreadsheet
Synchronously extract a document and export the result as an Excel spreadsheet.
Posts the document bytes for a synchronous extraction, captures the extraction id, and converts that extraction to an Excel file, returning the download URL.
2 steps inputs: apiKey, documentBytes, documentType outputs: downloadUrl, extractionId, parsedDocument
1
syncExtract
Extract data from the posted document bytes synchronously and capture the resulting extraction id.
2
exportExcel
Convert the completed extraction to an Excel spreadsheet and return the time-limited download URL.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sensible Sync Extract Then Spreadsheet
  summary: Synchronously extract a document, then convert that extraction to a downloadable Excel spreadsheet.
  description: >-
    A test-and-export flow. The workflow extracts data from local document
    bytes synchronously against a chosen document type, captures the extraction
    id from the response, and then converts that single extraction to an Excel
    spreadsheet, returning the time-limited download URL. Because the sync
    extract endpoint returns results immediately, no polling is required. Every
    step spells out its request inline, including the Bearer authorization.
  version: 1.0.0
sourceDescriptions:
- name: documentApi
  url: ../openapi/sensible-so-document-api-openapi.yml
  type: openapi
- name: getExcelFromDocumentsApi
  url: ../openapi/sensible-so-get-excel-from-documents-api-openapi.yml
  type: openapi
workflows:
- workflowId: sync-extract-then-spreadsheet
  summary: Synchronously extract a document and export the result as an Excel spreadsheet.
  description: >-
    Posts the document bytes for a synchronous extraction, captures the
    extraction id, and converts that extraction to an Excel file, returning the
    download URL.
  inputs:
    type: object
    required:
    - apiKey
    - documentType
    - documentBytes
    properties:
      apiKey:
        type: string
        description: Sensible API key used as the Bearer token.
      documentType:
        type: string
        description: The document type to extract from (e.g. senseml_basics).
      documentBytes:
        type: string
        description: The raw (non-encoded) document bytes to extract.
  steps:
  - stepId: syncExtract
    description: >-
      Extract data from the posted document bytes synchronously and capture the
      resulting extraction id.
    operationId: extract-data-from-a-document
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: document_type
      in: path
      value: $inputs.documentType
    requestBody:
      contentType: application/pdf
      payload: $inputs.documentBytes
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      extractionId: $response.body#/id
      status: $response.body#/status
      parsedDocument: $response.body#/parsed_document
  - stepId: exportExcel
    description: >-
      Convert the completed extraction to an Excel spreadsheet and return the
      time-limited download URL.
    operationId: get-excel-extraction
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: ids
      in: path
      value: $steps.syncExtract.outputs.extractionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      downloadUrl: $response.body#/url
  outputs:
    extractionId: $steps.syncExtract.outputs.extractionId
    parsedDocument: $steps.syncExtract.outputs.parsedDocument
    downloadUrl: $steps.exportExcel.outputs.downloadUrl

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/sensible-so-sync-extract-then-spreadsheet-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.