Solana · Arazzo Workflow

Solana Page an Address's Transaction History

Version 1.0.0

List an address's recent transaction signatures and expand the newest one into full detail.

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

Provider

solana

Workflows

address-transaction-history
Fetch a page of an address's signatures and detail the newest transaction.
Lists recent signatures involving an address and resolves the most recent one into a full transaction record.
2 steps inputs: address, limit outputs: newestBlockTime, newestFee, newestSignature, signatures
1
listSignatures
List confirmed transaction signatures involving the address, newest first, capped at the requested page size.
2
detailNewest
Expand the newest signature into a parsed transaction, capturing the slot, block time, fee charged, and the balances before and after execution.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Solana Page an Address's Transaction History
  summary: List an address's recent transaction signatures and expand the newest one into full detail.
  description: >-
    The read path behind every Solana block explorer and wallet activity feed.
    The workflow lists confirmed signatures for an address backwards in time
    from the most recent confirmed block, then expands the newest signature into
    a fully parsed transaction with its fee, balance deltas, and log messages.
    The signature list carries a `before` cursor, so the caller can page deeper
    by re-running the flow with the last signature of the previous page. Every
    step spells out its JSON-RPC request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: transactionsApi
  url: ../openapi/solana-transactions-api-openapi.yml
  type: openapi
workflows:
- workflowId: address-transaction-history
  summary: Fetch a page of an address's signatures and detail the newest transaction.
  description: >-
    Lists recent signatures involving an address and resolves the most recent
    one into a full transaction record.
  inputs:
    type: object
    required:
    - address
    properties:
      address:
        type: string
        description: Base58-encoded account address to list activity for.
      limit:
        type: integer
        description: Maximum number of signatures to return (1-1000).
        default: 10
  steps:
  - stepId: listSignatures
    description: >-
      List confirmed transaction signatures involving the address, newest first,
      capped at the requested page size.
    operationId: getSignaturesForAddress
    requestBody:
      contentType: application/json
      payload:
        jsonrpc: "2.0"
        id: 1
        method: getSignaturesForAddress
        params:
        - $inputs.address
        - limit: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.result
      type: jsonpath
    outputs:
      signatures: $response.body#/result
      newestSignature: $response.body#/result/0/signature
      newestSlot: $response.body#/result/0/slot
    onSuccess:
    - name: hasActivity
      type: goto
      stepId: detailNewest
      criteria:
      - context: $response.body
        condition: $.result.length > 0
        type: jsonpath
  - stepId: detailNewest
    description: >-
      Expand the newest signature into a parsed transaction, capturing the slot,
      block time, fee charged, and the balances before and after execution.
    operationId: getTransaction
    requestBody:
      contentType: application/json
      payload:
        jsonrpc: "2.0"
        id: 1
        method: getTransaction
        params:
        - $steps.listSignatures.outputs.newestSignature
        - encoding: jsonParsed
          commitment: finalized
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.result.slot
      type: jsonpath
    outputs:
      slot: $response.body#/result/slot
      blockTime: $response.body#/result/blockTime
      fee: $response.body#/result/meta/fee
      preBalances: $response.body#/result/meta/preBalances
      postBalances: $response.body#/result/meta/postBalances
      logMessages: $response.body#/result/meta/logMessages
  outputs:
    signatures: $steps.listSignatures.outputs.signatures
    newestSignature: $steps.listSignatures.outputs.newestSignature
    newestFee: $steps.detailNewest.outputs.fee
    newestBlockTime: $steps.detailNewest.outputs.blockTime

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/solana-address-transaction-history-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.