Skip to main content

App Details

A utility endpoint that retrieves detailed information about an application using its unique identifier (e.g.,morpho).

appDetailsById

This endpoint is particularly useful when working with other queries such as app balances. For example, you can use the appId returned in appBalances to fetch additional details about any particular application.

Example Use Case: Application Metadata

When you need to fetch application details, such as:

  • Display name
  • Description
  • Website URL
  • Logo image
  • Category information
  • Social media links

Example Variables

{
"appId": "morpho"
}

Example Query

query AppDetailsById($appId: String!) {
appDetailsById(appId: $appId) {
displayName
description
url
slug
imgUrl
category {
name
slug
}
}
}

Example Response

{
"data": {
"appDetailsById": {
"displayName": "Morpho",
"description": "Earn yield, borrow assets, curate markets and vaults.",
"url": "https://morpho.org/",
"slug": "morpho",
"imgUrl": "https://storage.googleapis.com/zapper-fi-assets/apps%2Fmorpho.png",
"category": {
"name": "DeFi",
"slug": "defi"
}
}
}

Arguments

ArgumentDescriptionType
appIdThe unique identifier of the applicationString!

Fields

App Fields

FieldDescriptionType
displayNameThe typical display name of the applicationString!
descriptionDescription of the applicationString!
urlApplication websiteString
imgUrlApplication image URLString!
slugUnique application slug also known as appIdString!
linksApplication linksAppLinks
categoryIdCategory IDInt
categoryApplication categoryAppCategoryObject
twitterUrlTwitter profile URLString
farcasterUrlFarcaster profile URLString
createdAtCreation timestampTimestamp!