Arkham Volume API

The Volume API from Arkham — 2 operation(s) for volume.

Operations 2

GET /volume/address/{address} Get transfer volume for an address #
GET /volume/entity/{entity} Get transfer volume for an entity #

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/arkham-volume-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

arkham-volume-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arkham Intel Analytics Volume API
  version: 1.1.0
servers:
- url: https://api.arkm.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Volume
paths:
  /volume/address/{address}:
    get:
      summary: Get transfer volume for an address
      description: Returns transfer volume snapshots for the specified address, broken down by chain.
      operationId: GetAddressVolume
      parameters:
      - name: chains
        in: query
        description: List of chains to filter by. If omitted, returns data across all supported chains.
        schema:
          $ref: '#/components/schemas/Chains'
      - name: address
        in: path
        description: The blockchain address to query transfer volume for.
        required: true
        schema:
          type: string
          description: The blockchain address to query transfer volume for.
          example: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: array
                  items:
                    $ref: '#/components/schemas/VolumeSnapshot'
                  example:
                  - time: '2024-01-01T00:00:00Z'
                    volumes:
                    - depositedUSD: 1.23
                      exchangeID: binance
                      exchangeName: binance
                      withdrawnUSD: 1.23
                example:
                  abc123:
                  - time: '2024-01-01T00:00:00Z'
                    volumes:
                    - depositedUSD: 1.23
                      exchangeID: binance
                      exchangeName: binance
                      withdrawnUSD: 1.23
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Volume
  /volume/entity/{entity}:
    get:
      summary: Get transfer volume for an entity
      description: Returns transfer volume snapshots for the specified entity, broken down by chain.
      operationId: GetEntityVolume
      parameters:
      - name: chains
        in: query
        description: List of chains to filter by. If omitted, returns data across all supported chains.
        schema:
          $ref: '#/components/schemas/Chains'
      - name: entity
        in: path
        description: The entity ID to query transfer volume for.
        required: true
        schema:
          type: string
          description: The entity ID to query transfer volume for.
          example: binance
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: array
                  items:
                    $ref: '#/components/schemas/VolumeSnapshot'
                  example:
                  - time: '2024-01-01T00:00:00Z'
                    volumes:
                    - depositedUSD: 1.23
                      exchangeID: binance
                      exchangeName: binance
                      withdrawnUSD: 1.23
                example:
                  abc123:
                  - time: '2024-01-01T00:00:00Z'
                    volumes:
                    - depositedUSD: 1.23
                      exchangeID: binance
                      exchangeName: binance
                      withdrawnUSD: 1.23
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Volume
components:
  schemas:
    Chains:
      type: array
      items:
        $ref: '#/components/schemas/Chain'
      example:
      - ethereum
      - bsc
      - polygon
    Volume:
      required:
      - exchangeID
      - exchangeName
      - withdrawnUSD
      - depositedUSD
      type: object
      properties:
        depositedUSD:
          type: number
          example: 1.23
        exchangeID:
          type: string
          example: binance
        exchangeName:
          type: string
          example: binance
        withdrawnUSD:
          type: number
          example: 1.23
      example:
        depositedUSD: 1.23
        exchangeID: binance
        exchangeName: binance
        withdrawnUSD: 1.23
    Chain:
      enum:
      - ethereum
      - polygon
      - bsc
      - optimism
      - avalanche
      - arbitrum_one
      - base
      - bitcoin
      - tron
      - flare
      - solana
      - dogecoin
      - zcash
      - hyperevm
      - hypercore
      type: string
      example: ethereum
    VolumeSnapshot:
      required:
      - time
      - volumes
      type: object
      properties:
        time:
          type: string
          format: date-time
          example: '2024-01-01T00:00:00Z'
        volumes:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Volume'
          example:
          - depositedUSD: 1.23
            exchangeID: binance
            exchangeName: binance
            withdrawnUSD: 1.23
      example:
        time: '2024-01-01T00:00:00Z'
        volumes:
        - depositedUSD: 1.23
          exchangeID: binance
          exchangeName: binance
          withdrawnUSD: 1.23