Skip to main content
GET
/
v1
/
data
/
wallets
/
{address}
/
tokens
List wallet tokens
curl --request GET \
  --url https://releasing-soon.com/v1/data/wallets/{address}/tokens \
  --header 'Authorization: Bearer <token>'
{
  "tokens": [
    {
      "mint": "<string>",
      "amount": "<string>",
      "symbol": "<string>",
      "name": "<string>",
      "valueUsd": 123,
      "portfolioPct": 123,
      "priceUsd": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nshield.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Nova developer API key in the Authorization header. Demo playground keys should be restricted, rate-limited, and domain-scoped.

Path Parameters

address
string
required

Solana wallet address.

Minimum string length: 32

Query Parameters

limit
integer
default:25

Maximum number of records to return.

Required range: 1 <= x <= 100

Response

Wallet token holdings.

tokens
object[]
required