Enso projects API

The projects API from Enso — 2 operation(s) for projects.

Operations 2

GET /api/v1/projects Returns the overarching projects or platforms associated with the available projects #
GET /api/v1/projects/{project}/protocols Returns protocols available by project #

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/enso-projects-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

enso-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Enso ccip Projects API
  description: '#### Enso API

    - Find detailed documentation on [docs.enso.finance](https://docs.enso.finance).

    - To use the API, **you must include your API Key in the Authorization header** (Bearer format).

    - For testing, Swagger pre-authorizes you using the key: `1e02632d-6feb-4a75-a157-documentation` (1rps).

    - Get your own API Key at [enso.finance/developers](https://developers.enso.build/).'
  version: '1.0'
  contact: {}
servers:
- url: https://api.enso.finance
security:
- bearer: []
tags:
- name: projects
paths:
  /api/v1/projects:
    get:
      operationId: ProjectsController_standards
      summary: Returns the overarching projects or platforms associated with the available projects
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Project'
      tags:
      - projects
  /api/v1/projects/{project}/protocols:
    get:
      operationId: ProjectsController_getStandardsByProject
      summary: Returns protocols available by project
      parameters:
      - name: project
        required: true
        in: path
        description: The overarching project or platform
        schema:
          example: aave
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProtocolModel'
      tags:
      - projects
components:
  schemas:
    Project:
      type: object
      properties:
        id:
          type: string
        chains:
          type: array
          items:
            type: number
        protocols:
          type: array
          items:
            type: string
      required:
      - id
      - protocols
    Network:
      type: object
      properties:
        id:
          type: number
        name:
          type: string
      required:
      - id
      - name
    ProtocolModel:
      type: object
      properties:
        project:
          type: string
          example: uniswap
        slug:
          type: string
          example: uniswap-v2
        name:
          type:
          - string
          - 'null'
          example: Uniswap V2
        description:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
          example: https://app.uniswap.org/swap
        logosUri:
          example: https://icons.llama.fi/uniswap-v2.png
          type:
          - array
          - 'null'
          items:
            type: string
        chains:
          example:
          - id: 1
            name: mainnet
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Network'
      required:
      - project
      - slug
      - name
      - description
      - url
      - logosUri
      - chains
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: apiKey
      type: http