Nansen Smart Money API

Smart-money wallet flows and behavior.

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/nansen-smart-money-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

nansen-smart-money-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Nansen REST Smart Money API
  description: 'Nansen is an onchain analytics platform. This REST API surfaces

    Nansen''s smart-money flows and related onchain intelligence across

    multiple chains. Authentication uses an apiKey header. Default rate

    limits are 20 requests per second and 300 per minute.

    '
  version: v1
servers:
- url: https://api.nansen.ai/api/v1
  description: Nansen production API
security:
- apiKeyAuth: []
tags:
- name: Smart Money
  description: Smart-money wallet flows and behavior.
paths:
  /smart-money/netflow:
    get:
      tags:
      - Smart Money
      summary: Get smart-money netflow
      operationId: getSmartMoneyNetflow
      parameters:
      - in: query
        name: chain
        schema:
          type: string
      - in: query
        name: timeframe
        schema:
          type: string
      responses:
        '200':
          description: Netflow data.
          content:
            application/json:
              schema:
                type: object
  /smart-money/dex-trades:
    get:
      tags:
      - Smart Money
      summary: Get smart-money DEX trades
      operationId: getSmartMoneyDexTrades
      parameters:
      - in: query
        name: chain
        schema:
          type: string
      - in: query
        name: token
        schema:
          type: string
      responses:
        '200':
          description: DEX trades.
          content:
            application/json:
              schema:
                type: object
  /smart-money/perp-trades:
    get:
      tags:
      - Smart Money
      summary: Get smart-money perpetual trades
      operationId: getSmartMoneyPerpTrades
      parameters:
      - in: query
        name: chain
        schema:
          type: string
      responses:
        '200':
          description: Perpetual trades.
          content:
            application/json:
              schema:
                type: object
  /smart-money/dcas:
    get:
      tags:
      - Smart Money
      summary: Get smart-money DCA activity
      operationId: getSmartMoneyDcas
      parameters:
      - in: query
        name: chain
        schema:
          type: string
      responses:
        '200':
          description: DCA activity.
          content:
            application/json:
              schema:
                type: object
  /smart-money/holdings:
    get:
      tags:
      - Smart Money
      summary: Get smart-money current holdings
      operationId: getSmartMoneyHoldings
      parameters:
      - in: query
        name: chain
        schema:
          type: string
      responses:
        '200':
          description: Current holdings.
          content:
            application/json:
              schema:
                type: object
  /smart-money/historical-holdings:
    get:
      tags:
      - Smart Money
      summary: Get smart-money historical holdings
      operationId: getSmartMoneyHistoricalHoldings
      parameters:
      - in: query
        name: chain
        schema:
          type: string
      - in: query
        name: from
        schema:
          type: string
          format: date
      - in: query
        name: to
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Historical holdings.
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: apiKey
      description: Nansen API key issued to subscribed customers.