Skip to main content
POST
/
clients
/
me
/
integrations
/
hypernative
/
nfts
/
scan
Scan NFTs
curl --request POST \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/hypernative/nfts/scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nfts": [
    {
      "address": "<string>",
      "chain": "<string>",
      "evmChainId": 123
    }
  ]
}
'
{
  "data": {
    "rawResponse": {
      "nfts": [
        {
          "address": "<string>",
          "chain": "<string>",
          "evmChainId": 123,
          "accept": true
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Body

application/json
nfts
object[]
required

Response

Scan completed successfully

data
object