Arkham Subscription API

The Subscription API from Arkham — 1 operation(s) for subscription.

Operations 1

GET /subscription/intel-usage Get intel data usage for the current billing period #

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-subscription-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-subscription-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arkham Intel Analytics Subscription 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: Subscription
paths:
  /subscription/intel-usage:
    get:
      summary: Get intel data usage for the current billing period
      description: 'Returns your intel-data consumption for the current billing period, broken down by chain.


        Usage is tracked per seat (the calling user), not account-wide: `totalLimit` is the limit for your seat and `totalCount` is the data points your seat has consumed. The response also includes the start of the current period and the per-chain breakdown of usage.


        Returns 503 when usage tracking is unavailable.'
      operationId: GetIntelUsage
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntelUsageResponse'
        '500':
          description: Internal Server Error
      tags:
      - Subscription
components:
  schemas:
    IntelUsageResponse:
      required:
      - totalCount
      - totalLimit
      - chainUsage
      - periodStart
      type: object
      properties:
        chainUsage:
          type:
          - object
          - 'null'
          additionalProperties:
            $ref: '#/components/schemas/AdminIntelUsageChainResult'
          description: Per-chain-type breakdown of intel data points consumed. Keys are chain types; all EVM chains are grouped under "evm".
          example:
            bitcoin:
              count: 86
            dogecoin:
              count: 0
            evm:
              count: 11113
            solana:
              count: 1020
            tron:
              count: 154
            zcash:
              count: 0
        periodStart:
          type:
          - string
          - 'null'
          description: Start of the current billing period (UTC). Null if no period is active.
          format: date-time
          example: '2026-06-01T00:00:00Z'
        totalCount:
          type: integer
          description: Total intel data points consumed in the current billing period across all chains.
          example: 12373
        totalLimit:
          type: integer
          description: Per-seat intel data point limit for the current billing period.
          example: 1000000
      example:
        chainUsage:
          bitcoin:
            count: 86
          dogecoin:
            count: 0
          evm:
            count: 11113
          solana:
            count: 1020
          tron:
            count: 154
          zcash:
            count: 0
        periodStart: '2026-06-01T00:00:00Z'
        totalCount: 12373
        totalLimit: 1000000
    AdminIntelUsageChainResult:
      required:
      - count
      type: object
      properties:
        count:
          type: integer
          description: Intel data points consumed on this chain during the current billing period.
          example: 1284