GET
/
api
/
v1
/
standards
/
{slug}
curl --request GET \
  --url https://api.enso.finance/api/v1/standards/{slug} \
  --header 'Authorization: Bearer <token>'
[
  {
    "protocol": {
      "slug": "<string>",
      "url": "<string>"
    },
    "forks": [
      {
        "slug": "<string>",
        "url": "<string>"
      }
    ],
    "actions": [
      {
        "action": "approve",
        "name": "<string>",
        "functionNames": [
          "<string>"
        ],
        "supportedChains": [
          {
            "id": 123,
            "name": "<string>"
          }
        ],
        "inputs": [
          "<string>"
        ]
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

slug
string
required

The protocol slug

Example:

"aave-v2"

Response

200 - application/json
protocol
object
required
forks
object[]
required
actions
object[]
required

Was this page helpful?