ExchangeRate-API · Arazzo Workflow

ExchangeRate-API Enriched Pair Display

Version 1.0.0

Build a display-ready conversion with currency name, symbol, and flag.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Currency ExchangeForeign ExchangeFinancial DataForexCurrency ConversionPublic APIsArazzoWorkflows

Provider

exchangerate-api

Workflows

enriched-pair-display
Assemble a display-ready pair conversion with enriched target metadata.
Resolves the supported codes, fetches the enriched pair conversion (rate plus target currency locale, name, symbol, and flag), and pulls the latest rate table for the base currency to round out the display context.
3 steps inputs: apiKey, baseCode, targetCode outputs: conversionRate, conversionRates, targetData
1
listSupportedCodes
Retrieve the supported ISO 4217 currency codes to confirm both currencies are available before building the display.
2
getEnriched
Fetch the enriched pair conversion, returning the rate together with the target currency's locale, name, display symbol, and flag URL.
3
getLatest
Pull the latest rate table for the base currency to provide additional context alongside the enriched single-pair conversion.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: ExchangeRate-API Enriched Pair Display
  summary: Build a display-ready conversion with currency name, symbol, and flag.
  description: >-
    A presentation-oriented flow for building a rich currency conversion widget.
    It confirms the currencies against the supported-codes list, then calls the
    enriched-pair endpoint to return the conversion rate alongside the target
    currency's locale, name, display symbol, and flag URL, and finally pulls the
    base currency's latest rate table for additional context. Enriched data
    requires a Business or Volume plan. Each step inlines its full request,
    including the API key path parameter.
  version: 1.0.0
sourceDescriptions:
- name: enrichedDataApi
  url: ../openapi/exchangerate-api-enriched-data-api-openapi.yml
  type: openapi
- name: latestRatesApi
  url: ../openapi/exchangerate-api-latest-rates-api-openapi.yml
  type: openapi
- name: supportedCodesApi
  url: ../openapi/exchangerate-api-supported-codes-api-openapi.yml
  type: openapi
workflows:
- workflowId: enriched-pair-display
  summary: Assemble a display-ready pair conversion with enriched target metadata.
  description: >-
    Resolves the supported codes, fetches the enriched pair conversion (rate
    plus target currency locale, name, symbol, and flag), and pulls the latest
    rate table for the base currency to round out the display context.
  inputs:
    type: object
    required:
    - apiKey
    - baseCode
    - targetCode
    properties:
      apiKey:
        type: string
        description: Your ExchangeRate-API dashboard API key.
      baseCode:
        type: string
        description: ISO 4217 three-letter base currency code (e.g. USD).
      targetCode:
        type: string
        description: ISO 4217 three-letter target currency code (e.g. EUR).
  steps:
  - stepId: listSupportedCodes
    description: >-
      Retrieve the supported ISO 4217 currency codes to confirm both currencies
      are available before building the display.
    operationId: getSupportedCodes
    parameters:
    - name: api_key
      in: path
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    - condition: $response.body#/result == "success"
    outputs:
      supportedCodes: $response.body#/supported_codes
  - stepId: getEnriched
    description: >-
      Fetch the enriched pair conversion, returning the rate together with the
      target currency's locale, name, display symbol, and flag URL.
    operationId: getEnrichedPair
    parameters:
    - name: api_key
      in: path
      value: $inputs.apiKey
    - name: base_code
      in: path
      value: $inputs.baseCode
    - name: target_code
      in: path
      value: $inputs.targetCode
    successCriteria:
    - condition: $statusCode == 200
    - condition: $response.body#/result == "success"
    outputs:
      conversionRate: $response.body#/conversion_rate
      targetData: $response.body#/target_data
      flagUrl: $response.body#/target_data/flag_url
      displaySymbol: $response.body#/target_data/display_symbol
  - stepId: getLatest
    description: >-
      Pull the latest rate table for the base currency to provide additional
      context alongside the enriched single-pair conversion.
    operationId: getLatestRates
    parameters:
    - name: api_key
      in: path
      value: $inputs.apiKey
    - name: base_code
      in: path
      value: $inputs.baseCode
    successCriteria:
    - condition: $statusCode == 200
    - condition: $response.body#/result == "success"
    outputs:
      conversionRates: $response.body#/conversion_rates
      lastUpdate: $response.body#/time_last_update_utc
  outputs:
    conversionRate: $steps.getEnriched.outputs.conversionRate
    targetData: $steps.getEnriched.outputs.targetData
    conversionRates: $steps.getLatest.outputs.conversionRates

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/exchangerate-api-enriched-pair-display-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.