cURL
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" } ] } } }
This endpoint returns single DApp by its unique identifier.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
DApp's unique identifier
Requested DApp
Show child attributes
Represents a decentralized application (DApp).
Was this page helpful?