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

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