Enso standards API
The standards API from Enso — 4 operation(s) for standards.
The standards API from Enso — 4 operation(s) for standards.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/enso-standards-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Enso ccip Standards 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: standards
paths:
/api/v1/actions:
get:
operationId: ActionsController_findAll
summary: Returns actions available to use in bundle shortcuts
parameters: []
responses:
'200':
description: ''
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Action'
tags:
- standards
/api/v1/actions/{slug}:
get:
operationId: ActionsController_getActionsBySlug
summary: Returns actions available to use in bundle shortcuts for a given protocol
parameters:
- name: slug
required: true
in: path
schema:
type: string
responses:
'200':
description: ''
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Action'
tags:
- standards
/api/v1/standards:
get:
operationId: StandardsController_standards
summary: Returns standards and methods available to use in bundle shortcuts
parameters: []
responses:
'200':
description: ''
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Standard'
tags:
- standards
/api/v1/standards/{slug}:
get:
operationId: StandardsController_getProtocolBySlug
summary: Returns a standard by slug
parameters:
- name: slug
required: true
in: path
description: The protocol slug
schema:
example: aave-v2
type: string
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/ProtocolModel'
tags:
- standards
components:
schemas:
Protocol:
type: object
properties:
slug:
type: string
url:
type: string
required:
- slug
- url
StandardAction:
type: object
properties:
action:
type: string
enum:
- approve
- borrow
- borrowwithpositionid
- bridge
- deposit
- singledeposit
- singledepositwithpositionid
- multideposit
- multidepositwithpositionid
- tokenizedsingledeposit
- tokenizedmultideposit
- multioutsingledeposit
- depositclmm
- depositwithestimate
- encodedswap
- flashloan
- singletokenflashloan
- multitokenflashloan
- harvest
- nftborrow
- nftdeposit
- nftmultideposit
- nftmultiredeem
- nftredeem
- nftrepay
- permittransferfrom
- redeem
- singleredeem
- singleredeemwithpositionid
- multiredeem
- tokenizedsingleredeem
- tokenizedmultiredeem
- redeemclmm
- redeemwithestimate
- repay
- repaywithpositionid
- swap
- transfer
- transferfrom
- withdraw
- singlewithdraw
- singlewithdrawwithpositionid
- multiwithdraw
- route
- call
- split
- ondosplit
- merge
- balance
- minamountout
- slippage
- fee
- ensofee
- paymasterfee
- depositposition
- add
- sub
- mul
- div
- min
- max
- isequal
- islessthan
- isequalorlessthan
- isgreaterthan
- isequalorgreaterthan
- not
- check
- toggle
name:
type: string
functionNames:
type: array
items:
type: string
supportedChains:
type: array
items:
$ref: '#/components/schemas/Network'
inputs:
type: array
items:
type: string
required:
- action
- name
- functionNames
- supportedChains
- inputs
ActionVariant:
type: object
properties:
action:
type: string
inputs:
type: object
additionalProperties:
$ref: '#/components/schemas/ActionInputMetadata'
bundleName:
type: string
required:
- action
- inputs
Standard:
type: object
properties:
protocol:
$ref: '#/components/schemas/Protocol'
forks:
type: array
items:
$ref: '#/components/schemas/Protocol'
actions:
type: array
items:
$ref: '#/components/schemas/StandardAction'
required:
- protocol
- forks
- actions
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
Action:
type: object
properties:
action:
type: string
enum:
- approve
- borrow
- borrowwithpositionid
- bridge
- deposit
- singledeposit
- singledepositwithpositionid
- multideposit
- multidepositwithpositionid
- tokenizedsingledeposit
- tokenizedmultideposit
- multioutsingledeposit
- depositclmm
- depositwithestimate
- encodedswap
- flashloan
- singletokenflashloan
- multitokenflashloan
- harvest
- nftborrow
- nftdeposit
- nftmultideposit
- nftmultiredeem
- nftredeem
- nftrepay
- permittransferfrom
- redeem
- singleredeem
- singleredeemwithpositionid
- multiredeem
- tokenizedsingleredeem
- tokenizedmultiredeem
- redeemclmm
- redeemwithestimate
- repay
- repaywithpositionid
- swap
- transfer
- transferfrom
- withdraw
- singlewithdraw
- singlewithdrawwithpositionid
- multiwithdraw
- route
- call
- split
- ondosplit
- merge
- balance
- minamountout
- slippage
- fee
- ensofee
- paymasterfee
- depositposition
- add
- sub
- mul
- div
- min
- max
- isequal
- islessthan
- isequalorlessthan
- isgreaterthan
- isequalorgreaterthan
- not
- check
- toggle
inputs:
type: object
additionalProperties:
$ref: '#/components/schemas/ActionInputMetadata'
variants:
type: array
items:
$ref: '#/components/schemas/ActionVariant'
required:
- action
- inputs
ActionInputMetadata:
type: object
properties:
type:
type: string
description:
type: string
optional:
type: boolean
required:
- type
- description
Network:
type: object
properties:
id:
type: number
name:
type: string
required:
- id
- name
securitySchemes:
bearer:
scheme: bearer
bearerFormat: apiKey
type: http