Octav Tokens API

Token data endpoints

Operations 1

GET /token-overview Token Overview #

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/octav-tokens-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

octav-tokens-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Octav Airdrops Tokens API
  description: Comprehensive blockchain data API for portfolio management, transactions, and DeFi analytics
  version: 1.0.0
  contact:
    name: Octav Support
    url: https://octav.fi
    email: info@octav.fi
servers:
- url: https://api.octav.fi/v1
  description: Production API
security:
- bearerAuth: []
tags:
- name: Tokens
  description: Token data endpoints
paths:
  /token-overview:
    get:
      summary: Token Overview
      description: 'Get detailed token breakdown by protocol (PRO only).


        **Cost:** 1 credit per call


        **Get your API key:** [Dev Portal](https://data.octav.fi)'
      operationId: getTokenOverview
      tags:
      - Tokens
      parameters:
      - name: addresses
        in: query
        required: true
        description: EVM or SOL blockchain address
        schema:
          type: string
        example: '0x6426af179aabebe47666f345d69fd9079673f6cd'
      - name: date
        in: query
        required: true
        description: Portfolio snapshot date in YYYY-MM-DD format
        schema:
          type: string
          format: date
        example: '2024-11-01'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    image:
                      type: string
                      description: Token logo URL
                    symbol:
                      type: string
                      description: Token ticker symbol (e.g. ETH, USDC)
                    name:
                      type: string
                      description: Full token name
                    price:
                      type: string
                      description: Token price at the specified date
                    balance:
                      type: string
                      description: Total quantity held across all positions
                    value:
                      type: string
                      description: Total value in USD
                    percentage:
                      type: string
                      description: Percentage of total portfolio value
                    protocolsDetailed:
                      type: array
                      description: Breakdown of token distribution across protocols
                      items:
                        type: object
                        properties:
                          key:
                            type: string
                            description: Protocol identifier
                          name:
                            type: string
                            description: Protocol display name
                          value:
                            type: string
                            description: Value held in this protocol
                          balance:
                            type: string
                            description: Quantity held in this protocol
                          image:
                            type: string
                            description: Protocol logo URL
      security:
      - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer