Skip to main content
GET
/
v1
/
data
/
wallets
/
{address}
/
activity
List wallet activity
curl --request GET \
  --url https://releasing-soon.com/v1/data/wallets/{address}/activity \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "type": "swap",
      "timestamp": "2023-11-07T05:31:56Z",
      "summary": "<string>",
      "valueUsd": 123
    }
  ],
  "meta": {
    "nextCursor": "<string>"
  }
}

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 activity.

items
object[]
required
meta
object