CryptoCompare · Arazzo Workflow

CryptoCompare Exchange Discovery

Version 1.0.0

List exchanges, read general info, then rank top exchanges for a pair.

1 workflow 1 source API 1 provider
View Spec View on GitHub CryptocurrencyMarket DataReference RatesNewsSocialBlockchainOnchainOrder BookStreamingIndexArazzoWorkflows

Provider

cryptocompare

Workflows

exchange-discovery
List exchanges, read general info, then rank top exchanges for a pair.
Reads the full exchange-and-pairs map, the exchange general-info envelope, the top exchanges by 24-hour volume for a pair, and the full-data top exchanges envelope for that same pair.
4 steps inputs: apiKey, fsym, limit, tsym outputs: exchanges, generalInfo, topExchanges, topExchangesFull
1
listAllExchanges
Read the full map of integrated exchanges and the trading pairs each exchange currently exposes.
2
getExchangesGeneral
Read descriptive metadata, ranking grade, country, and feature flags for every integrated exchange.
3
getTopExchangesForPair
Rank the top exchanges by 24-hour volume for the requested pair.
4
getTopExchangesFull
Read the full-data top-exchanges envelope for the same pair, including the coin info block and per-exchange ticker detail.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: CryptoCompare Exchange Discovery
  summary: List exchanges, read general info, then rank top exchanges for a pair.
  description: >-
    A venue-analysis flow that lists every integrated exchange and the pairs
    each exposes, reads descriptive metadata and ranking grades for all
    exchanges, and then ranks the top exchanges by 24-hour volume for a specific
    pair before reading the full-data envelope for that same pair. Every step
    spells out its request inline, including the api_key, so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: exchangesApi
  url: ../openapi/cryptocompare-exchanges-api-openapi.yml
  type: openapi
workflows:
- workflowId: exchange-discovery
  summary: List exchanges, read general info, then rank top exchanges for a pair.
  description: >-
    Reads the full exchange-and-pairs map, the exchange general-info envelope,
    the top exchanges by 24-hour volume for a pair, and the full-data top
    exchanges envelope for that same pair.
  inputs:
    type: object
    required:
    - apiKey
    - fsym
    - tsym
    properties:
      apiKey:
        type: string
        description: CryptoCompare API key supplied as the api_key query parameter.
      fsym:
        type: string
        description: From-symbol (base cryptocurrency) of the pair, e.g. BTC.
      tsym:
        type: string
        description: To-symbol (quote currency) of the pair, e.g. USD.
      limit:
        type: integer
        description: Number of top exchanges to return for the pair.
        default: 10
  steps:
  - stepId: listAllExchanges
    description: >-
      Read the full map of integrated exchanges and the trading pairs each
      exchange currently exposes.
    operationId: getAllExchanges
    parameters:
    - name: api_key
      in: query
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      exchanges: $response.body#/Data
  - stepId: getExchangesGeneral
    description: >-
      Read descriptive metadata, ranking grade, country, and feature flags for
      every integrated exchange.
    operationId: getExchangesGeneralInfo
    parameters:
    - name: api_key
      in: query
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      generalInfo: $response.body#/Data
  - stepId: getTopExchangesForPair
    description: >-
      Rank the top exchanges by 24-hour volume for the requested pair.
    operationId: getTopExchangesByPairVolume
    parameters:
    - name: api_key
      in: query
      value: $inputs.apiKey
    - name: fsym
      in: query
      value: $inputs.fsym
    - name: tsym
      in: query
      value: $inputs.tsym
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      topExchanges: $response.body#/Data
  - stepId: getTopExchangesFull
    description: >-
      Read the full-data top-exchanges envelope for the same pair, including the
      coin info block and per-exchange ticker detail.
    operationId: getTopExchangesFullByPairVolume
    parameters:
    - name: api_key
      in: query
      value: $inputs.apiKey
    - name: fsym
      in: query
      value: $inputs.fsym
    - name: tsym
      in: query
      value: $inputs.tsym
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      coinInfo: $response.body#/Data/CoinInfo
      exchanges: $response.body#/Data/Exchanges
  outputs:
    exchanges: $steps.listAllExchanges.outputs.exchanges
    generalInfo: $steps.getExchangesGeneral.outputs.generalInfo
    topExchanges: $steps.getTopExchangesForPair.outputs.topExchanges
    topExchangesFull: $steps.getTopExchangesFull.outputs.exchanges

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/cryptocompare-exchange-discovery-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.