Skip to main content
GET
/
v1
/
dapps
/
{dapp_id}
Get DApp by ID
curl --request GET \
  --url https://api.zerion.io/v1/dapps/{dapp_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "links": {
    "self": "<string>"
  },
  "data": {
    "type": "dapps",
    "id": "<string>",
    "attributes": {
      "name": "AAVE V3",
      "description": "Earn interest, borrow assets, and build applications.",
      "icon": {
        "url": "https://token-icons.s3.amazonaws.com/0x0391d2021f89dc339f60fff84546ea23e337750f.png"
      },
      "url": "https://aave.com/",
      "manage_positions_url": "https://app.aave.com/",
      "external_links": [
        {
          "url": "https://www.indexcoop.com",
          "type": "website",
          "name": "Website"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

dapp_id
string
required

DApp's unique identifier

Response

Requested DApp

data
object
required

Represents a decentralized application (DApp).