Tesseract strategies API

The strategies API from Tesseract — 2 operation(s) for strategies.

Operations 2

GET /strategies List all strategies #
GET /strategies/{id} Get strategy by ID #

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-strategies-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-strategies-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tesseract Public clients Strategies API
  description: Client-facing API for vault data, strategies, and performance metrics.
  version: 0.1.0
  contact: {}
servers: []
tags:
- name: strategies
paths:
  /strategies:
    get:
      operationId: StrategiesController_getStrategies
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StrategyModel'
      summary: List all strategies
      tags:
      - strategies
  /strategies/{id}:
    get:
      operationId: StrategiesController_getStrategy
      parameters:
      - name: id
        required: true
        in: path
        description: Strategy UUID
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategyModel'
      summary: Get strategy by ID
      tags:
      - strategies
components:
  schemas:
    StrategyModel:
      type: object
      properties:
        id:
          type: string
          example: 550e8400-e29b-41d4-a716-446655440000
        name:
          type: string
          example: Conservative USDC
        asset:
          type: string
          example: USDC
        description:
          type:
          - object
          - 'null'
          example: Low-risk stablecoin strategy
        deployerAddress:
          type: string
          example: '0xfC6C59AbA3F9D63A351C7Ea1ba0B48714BFdA2da'
        expectedApy:
          type:
          - object
          - 'null'
          example: 4-6%
        dashboardDescription:
          type:
          - object
          - 'null'
          example: A conservative stablecoin lending strategy…
        dashboardWithdrawals:
          type:
          - object
          - 'null'
          example: 24h
        learnMoreLink:
          type:
          - object
          - 'null'
          example: https://tesseract.fi/strategies/usdc-conservative
        createdAt:
          type: string
          example: '2025-01-15T10:00:00.000Z'
        updatedAt:
          type: string
          example: '2025-01-15T10:00:00.000Z'
      required:
      - id
      - name
      - asset
      - description
      - deployerAddress
      - expectedApy
      - dashboardDescription
      - dashboardWithdrawals
      - learnMoreLink
      - createdAt
      - updatedAt