List all non-user initiated transactions per partner or per user V2

This endpoint returns a list of non-user-initiated transactions, categorised as either incoming (from staking rewards and giveaways) or outgoing (from metal storage fees):

  • Metal storage fees are deducted weekly for users with metal assets
  • Staking rewards are credited based on staked amounts
  • Giveaways occur sporadically, typically during marketing campaigns.

Either a date range (date_start and date_end) or a user_id has to be provided to retrieve these transactions.

SecuritybearerAuth
Request
query Parameters
date_start
string <date>

Start date for search in Y-m-d format

Example: date_start=2020-10-10
date_end
string <date>

End date for search in Y-m-d format

Example: date_end=2020-10-10
types[]
string

Types of the non-user initiated transactions to be include in the result

Enum: "metal_storage_fee" "staking_reward" "giveaway" "tax_refund" "deduction"
Example: types[]=staking_reward
directions[]
string

Directions of the non-user initiated transactions to be include in the result

Enum: "incoming" "outgoing"
Example: directions[]=incoming
user_id
string <uuid>

Search by unique user identifier

Example: user_id=2e4c89ac-1290-426f-8de0-4c7b40b91d3a
page_size
integer [ 1 .. 100 ]

Number of elements to be displayed on a page

Example: page_size=10
page
integer >= 1

Display page number

Example: page=1
Responses
200

Non-user initiated transactions collection.

401

Unauthorized

422

Error

429

Too Many Requests

500

Error

503

Maintenance or Service unavailable

get/v2/non-user-initiated-transactions
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "meta": {
    },
  • "links": {
    }
}