Ankr · Arazzo Workflow

Ankr Wallet Cross-Chain Activity

Version 1.0.0

Discover the chains a wallet uses, then pull its transaction history.

1 workflow 1 source API 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

ankr

Workflows

wallet-cross-chain-activity
Discover a wallet's active chains, then read its transaction history.
Discovers the set of chains a wallet has interacted with and then retrieves the full transaction history for that wallet across the supplied chains.
2 steps inputs: blockchain, descOrder, pageSize, walletAddress outputs: interactions, transactions
1
getInteractions
Discover the chains the wallet has interacted with.
2
getTransactions
Retrieve the full transaction history for the wallet across the supplied chains.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Ankr Wallet Cross-Chain Activity
  summary: Discover the chains a wallet uses, then pull its transaction history.
  description: >-
    Maps a wallet's cross-chain footprint by first discovering which chains it has
    interacted with via ankr_getInteractions and then pulling its full transaction
    history with ankr_getTransactionsByAddress across the supplied chains. Each
    step is written out inline as a JSON-RPC call so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: queryApi
  url: ../openapi/ankr-query-api-openapi.yml
  type: openapi
workflows:
- workflowId: wallet-cross-chain-activity
  summary: Discover a wallet's active chains, then read its transaction history.
  description: >-
    Discovers the set of chains a wallet has interacted with and then retrieves
    the full transaction history for that wallet across the supplied chains.
  inputs:
    type: object
    required:
    - walletAddress
    - blockchain
    properties:
      walletAddress:
        type: string
        description: The wallet address to profile.
      blockchain:
        type: array
        items:
          type: string
        description: One or more chain names to pull transaction history from.
      pageSize:
        type: integer
        description: Maximum number of transactions to return per page.
      descOrder:
        type: boolean
        description: Return transactions newest-first when true.
  steps:
  - stepId: getInteractions
    description: >-
      Discover the chains the wallet has interacted with.
    operationId: ankrGetInteractions
    requestBody:
      contentType: application/json
      payload:
        jsonrpc: "2.0"
        id: 1
        method: ankr_getInteractions
        params:
          walletAddress: $inputs.walletAddress
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      interactions: $response.body#/result
  - stepId: getTransactions
    description: >-
      Retrieve the full transaction history for the wallet across the supplied
      chains.
    operationId: ankrGetTransactionsByAddress
    requestBody:
      contentType: application/json
      payload:
        jsonrpc: "2.0"
        id: 1
        method: ankr_getTransactionsByAddress
        params:
          address:
          - $inputs.walletAddress
          blockchain: $inputs.blockchain
          pageSize: $inputs.pageSize
          descOrder: $inputs.descOrder
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transactions: $response.body#/result
  outputs:
    interactions: $steps.getInteractions.outputs.interactions
    transactions: $steps.getTransactions.outputs.transactions

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/ankr-wallet-cross-chain-activity-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.