curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/web3/members/{dripId}/nfts \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"contractAddress": "<string>",
"chain": "ethereum",
"tokenId": "<string>",
"owner": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"traitType": "<string>",
"value": "<string>",
"displayType": null
}
],
"balances": [
{
"realmPointId": "<string>",
"balance": 123,
"lastCredited": "2023-11-07T05:31:56Z",
"lastCreditedBy": 123,
"pointMetadata": {}
}
]
}
],
"meta": {
"totalCount": 123,
"hasNextPage": true,
"nextCursor": "<string>"
}
}
Get user ERC721 NFTs with pagination
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/web3/members/{dripId}/nfts \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"contractAddress": "<string>",
"chain": "ethereum",
"tokenId": "<string>",
"owner": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"traitType": "<string>",
"value": "<string>",
"displayType": null
}
],
"balances": [
{
"realmPointId": "<string>",
"balance": 123,
"lastCredited": "2023-11-07T05:31:56Z",
"lastCreditedBy": 123,
"pointMetadata": {}
}
]
}
],
"meta": {
"totalCount": 123,
"hasNextPage": true,
"nextCursor": "<string>"
}
}
API Key
Default Response
The response is of type object
.