AZA Finance · Arazzo Workflow

AZA Finance — send a cross-border payout

Version 1.0.0

Quote FX, create a sender, create a transaction, fund it, and confirm settlement.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CompanyFinancial-ServicesPaymentsForeign ExchangeCross-Border PaymentsAfricaFintechArazzoWorkflows

Provider

aza-finance

Workflows

send-cross-border-payout
Create a sender and transaction, fund it, and poll to a settled state.
Runs against the TransferZero API V1. Seed with sandbox recipient values (account/phone ending 00 = paid) so a fork settles in test mode.
4 steps inputs: amount, external_id, input_currency, output_currency, recipients, sender outputs: transaction_id
1
quote
Quote FX and fees for the transfer.
2
create-sender
Create (or reuse via external_id) the sending party.
3
create-and-fund
Create the transaction and fund it in one call.
4
confirm
Fetch the transaction and confirm the recipient state.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: AZA Finance — send a cross-border payout
  version: 1.0.0
  summary: Quote FX, create a sender, create a transaction, fund it, and confirm settlement.
  x-realizes-capability-ids:
  - BC-1300
  - BC-1340.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-1300
      capability_name: Banking Customer Management
      spec: aza-finance-senders-api-openapi.yml
      confidence: 0.7
    - capability_id: BC-1340.10
      capability_name: Payment Initiation Management
      spec: aza-finance-transactions-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: sendersApi
  url: ../openapi/aza-finance-senders-api-openapi.yml
  type: openapi
- name: transactionsApi
  url: ../openapi/aza-finance-transactions-api-openapi.yml
  type: openapi
workflows:
- workflowId: send-cross-border-payout
  summary: Create a sender and transaction, fund it, and poll to a settled state.
  description: >-
    Runs against the TransferZero API V1. Seed with sandbox recipient values
    (account/phone ending 00 = paid) so a fork settles in test mode.
  inputs:
    type: object
    properties:
      input_currency: {type: string}
      output_currency: {type: string}
      amount: {type: number}
      external_id: {type: string}
      sender: {type: object}
      recipients: {type: array}
  steps:
  - stepId: quote
    description: Quote FX and fees for the transfer.
    operationId: calculate-transactions
    requestBody:
      payload:
        transaction:
          input_currency: $inputs.input_currency
          output_currency: $inputs.output_currency
          recipients: $inputs.recipients
    successCriteria:
    - condition: $statusCode == 200
  - stepId: create-sender
    description: Create (or reuse via external_id) the sending party.
    operationId: post-senders
    requestBody:
      payload:
        sender: $inputs.sender
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      sender_id: $response.body#/object/id
  - stepId: create-and-fund
    description: Create the transaction and fund it in one call.
    operationId: create-and-fund-transaction
    requestBody:
      payload:
        transaction:
          external_id: $inputs.external_id
          input_currency: $inputs.input_currency
          output_currency: $inputs.output_currency
          sender_id: $steps.create-sender.outputs.sender_id
          recipients: $inputs.recipients
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      transaction_id: $response.body#/object/id
  - stepId: confirm
    description: Fetch the transaction and confirm the recipient state.
    operationId: get-transaction
    parameters:
    - name: Transaction ID
      in: path
      value: $steps.create-and-fund.outputs.transaction_id
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    transaction_id: $steps.create-and-fund.outputs.transaction_id

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/aza-finance-send-payout"
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 email required.

A second provider on the same verified email joins the account you already have.