Tatum Data API

The Data API from Tatum — 4 operation(s) for data.

Specifications

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/tatum-data-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

tatum-data-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Tatum Data API
  version: 4.0.0
  description: 'REST API for indexed multi-chain blockchain data including balances,

    transactions, blocks, and exchange rates. Authentication uses an API

    key provided in the x-api-key header.

    '
  contact:
    name: Tatum
    url: https://docs.tatum.io/reference/rest-api-overview
servers:
- url: https://api.tatum.io
  description: Production
security:
- apiKeyAuth: []
tags:
- name: Data
paths:
  /v4/data/blockchains/balance:
    get:
      summary: Get native balance
      description: Retrieve native balance for a blockchain address.
      operationId: getNativeBalance
      tags:
      - Data
      responses:
        '200':
          description: Balance details
  /v4/data/blockchains/transaction:
    get:
      summary: Get transaction by hash
      description: Retrieve transaction details using transaction hash.
      operationId: getTransaction
      tags:
      - Data
      responses:
        '200':
          description: Transaction details
  /v4/data/blockchains/block:
    get:
      summary: Get block by hash or height
      description: Fetch block information by hash or block number.
      operationId: getBlock
      tags:
      - Data
      responses:
        '200':
          description: Block details
  /v4/data/blockchains/block/current:
    get:
      summary: Get current block height
      description: Obtain the latest block height for supported blockchains.
      operationId: getCurrentBlockHeight
      tags:
      - Data
      responses:
        '200':
          description: Current block height
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key