Tesseract insights API

The insights API from Tesseract — 5 operation(s) for insights.

Operations 5

GET /insights/{vaultAddress}/allocations Allocation history for stacked area chart #
GET /insights/{vaultAddress}/allocations/latest Current allocation breakdown for pie/donut chart #
GET /insights/{vaultAddress}/performance APY/APR history for line chart #
GET /insights/{vaultAddress}/tvl TVL and share price history for area chart #
GET /insights/{vaultAddress}/summary Dashboard summary with KPIs #

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/tesseract-insights-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tesseract-insights-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tesseract Public clients Insights API
  description: Client-facing API for vault data, strategies, and performance metrics.
  version: 0.1.0
  contact: {}
servers: []
tags:
- name: insights
paths:
  /insights/{vaultAddress}/allocations:
    get:
      operationId: InsightsController_getAllocations
      parameters:
      - name: vaultAddress
        required: true
        in: path
        description: Vault contract address
        schema:
          type: string
      - name: from
        required: false
        in: query
        description: ISO 8601 start date (defaults to 30 days ago)
        schema:
          type: string
      - name: to
        required: false
        in: query
        description: ISO 8601 end date
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllocationHistoryModel'
      summary: Allocation history for stacked area chart
      tags:
      - insights
  /insights/{vaultAddress}/allocations/latest:
    get:
      operationId: InsightsController_getAllocationsLatest
      parameters:
      - name: vaultAddress
        required: true
        in: path
        description: Vault contract address
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllocationLatestModel'
      summary: Current allocation breakdown for pie/donut chart
      tags:
      - insights
  /insights/{vaultAddress}/performance:
    get:
      operationId: InsightsController_getPerformance
      parameters:
      - name: vaultAddress
        required: true
        in: path
        description: Vault contract address
        schema:
          type: string
      - name: from
        required: false
        in: query
        description: ISO 8601 start date (defaults to 30 days ago)
        schema:
          type: string
      - name: to
        required: false
        in: query
        description: ISO 8601 end date
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PerformanceHistoryModel'
      summary: APY/APR history for line chart
      tags:
      - insights
  /insights/{vaultAddress}/tvl:
    get:
      operationId: InsightsController_getTvl
      parameters:
      - name: vaultAddress
        required: true
        in: path
        description: Vault contract address
        schema:
          type: string
      - name: from
        required: false
        in: query
        description: ISO 8601 start date (defaults to 30 days ago)
        schema:
          type: string
      - name: to
        required: false
        in: query
        description: ISO 8601 end date
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TvlHistoryModel'
      summary: TVL and share price history for area chart
      tags:
      - insights
  /insights/{vaultAddress}/summary:
    get:
      operationId: InsightsController_getSummary
      parameters:
      - name: vaultAddress
        required: true
        in: path
        description: Vault contract address
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SummaryModel'
      summary: Dashboard summary with KPIs
      tags:
      - insights
components:
  schemas:
    AllocationHistoryModel:
      type: object
      properties:
        vaultAddress:
          type: string
          example: '0x3b3bdaa4462851621818d2cebc835e077587147a'
        chainId:
          type: number
          example: 1
        series:
          type: array
          items:
            type: object
      required:
      - vaultAddress
      - chainId
      - series
    AllocationLatestModel:
      type: object
      properties:
        vaultAddress:
          type: string
          example: '0x3b3bdaa4462851621818d2cebc835e077587147a'
        chainId:
          type: number
          example: 1
        timestamp:
          type: string
          example: '2026-03-01T00:00:00.000Z'
        blockNumber:
          type: number
          example: 24357173
        allocations:
          type: array
          items:
            type: object
        totalUsd:
          type: string
          example: '422478.39'
      required:
      - vaultAddress
      - chainId
      - timestamp
      - blockNumber
      - allocations
      - totalUsd
    TvlHistoryModel:
      type: object
      properties:
        vaultAddress:
          type: string
          example: '0x3b3bdaa4462851621818d2cebc835e077587147a'
        chainId:
          type: number
          example: 1
        series:
          type: array
          items:
            type: object
      required:
      - vaultAddress
      - chainId
      - series
    PerformanceHistoryModel:
      type: object
      properties:
        vaultAddress:
          type: string
          example: '0x3b3bdaa4462851621818d2cebc835e077587147a'
        chainId:
          type: number
          example: 1
        series:
          type: array
          items:
            type: object
      required:
      - vaultAddress
      - chainId
      - series
    SummaryModel:
      type: object
      properties:
        vaultAddress:
          type: string
          example: '0x3b3bdaa4462851621818d2cebc835e077587147a'
        chainId:
          type: number
          example: 1
        currentTvl:
          type: string
          example: '422478.39'
        currentApy:
          type: string
          example: '5.234567'
        tvlChange24h:
          type: string
          example: '1234.56'
        tvlChangePct24h:
          type: string
          example: '0.2934'
        apyAvg7d:
          type: string
          example: '5.123456'
        apyAvg30d:
          type: string
          example: '4.987654'
        totalMarkets:
          type: number
          example: 5
        lastSyncedAt:
          type: string
          example: '2026-03-01T00:00:00.000Z'
        lastBlockNumber:
          type: number
          example: 24357173
        totalDeposited:
          type: string
          example: '1000000000'
        totalWithdrawn:
          type: string
          example: '200000000'
      required:
      - vaultAddress
      - chainId
      - currentTvl
      - currentApy
      - tvlChange24h
      - tvlChangePct24h
      - apyAvg7d
      - apyAvg30d
      - totalMarkets
      - lastSyncedAt
      - lastBlockNumber
      - totalDeposited
      - totalWithdrawn