GET
/
api
/
v1
/
projects
/
{project}
/
protocols
curl --request GET \
  --url https://api.enso.finance/api/v1/projects/{project}/protocols \
  --header 'Authorization: Bearer <token>'
[
  {
    "project": "uniswap",
    "slug": "uniswap-v2",
    "name": "Uniswap V2",
    "description": "<string>",
    "url": "https://app.uniswap.org/swap",
    "logosUri": "https://icons.llama.fi/uniswap-v2.png",
    "chains": [
      {
        "id": 1,
        "name": "mainnet"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project
string
required

The overarching project or platform

Example:

"aave"

Response

200 - application/json
project
string
required
Example:

"uniswap"

slug
string
required
Example:

"uniswap-v2"

name
string | null
required
Example:

"Uniswap V2"

description
string | null
required
url
string | null
required
Example:

"https://app.uniswap.org/swap"

logosUri
string[] | null
required
Example:

"https://icons.llama.fi/uniswap-v2.png"

chains
object[] | null
required
Example:
[{ "id": 1, "name": "mainnet" }]