Get Wallet Actions
GET/actions
Get Wallet Actions
Request
Query Parameters
apiKey stringrequired
Your Public API key.
page integer
Default value: 1
Page number for pagination.
limit integer
Default value: 10
Number of items per page.
tokenAddress string
Filter actions by token address.
Responses
- 200
- 401
- 403
Successful response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- Array [
- ]
- ]
docs object[]
_id string
walletAddress string
name string
status string
received object[]
name string
symbol string
address string
decimals integer
value string
type string
_id string
to stringnullable
sent object[]
name string
symbol string
address string
decimals integer
value string
type string
_id string
to stringnullable
userOpHash string
txHash string
{
"docs": [
{
"_id": "string",
"walletAddress": "string",
"name": "string",
"status": "string",
"received": [
{
"name": "string",
"symbol": "string",
"address": "string",
"decimals": 0,
"value": "string",
"type": "string",
"_id": "string",
"to": "string"
}
],
"sent": [
{
"name": "string",
"symbol": "string",
"address": "string",
"decimals": 0,
"value": "string",
"type": "string",
"_id": "string",
"to": "string"
}
],
"userOpHash": "string",
"txHash": "string"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
statusCode integer
errorMessage string
path string
{
"statusCode": 0,
"errorMessage": "string",
"path": "string"
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
statusCode integer
errorMessage string
path string
{
"statusCode": 0,
"errorMessage": "string",
"path": "string"
}
Loading...