GET
/
api
/
v1
/
realms
/
{realmId}
/
web3
/
members
/
{dripId}
/
nfts
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>"
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

realmId
string
required
dripId
string
required

Query Parameters

limit
number
cursor
string
activationId
string
includeBalances
boolean
includeAttributes
boolean

Response

200 - application/json
Default Response
data
any[]
meta
object