GET
/
v1
/
analytics
/
transfers
/
summary
curl --request GET \
  --url https://li.quest/v1/analytics/transfers/summary
{
  "hasNext": false,
  "hasPrevious": false,
  "next": "<string>",
  "previous": "<string>",
  "data": [
    {
      "id": {
        "toAddress": "<string>",
        "sendingChainId": 123
      },
      "totalReceivedAmount": 123
    }
  ]
}

Query Parameters

limit
integer
default:10

Pagination limit. Defines the maximum number of returned results.

next
string

The next page cursor. Must come from the next field of the response of the previous request.

previous
string

The previous page cursor. Must come from the previous field of the response of the previous request.

fromTimestamp
string
required

A Unix timestamp in seconds marking the start of the query period, inclusive. Transactions older than this timestamp will not be included in the summary.

toTimestamp
string
required

A Unix timestamp in seconds marking the end of the query period, inclusive. Transactions after this timestamp will not be included in the summary. The maximum range supported by the endpoint is 30 days.

toChain
string
required

The ID, or key of the chain on the receiving side of the transfer. This parameter filters the summary to include only transfers received on the specified chain.

toToken
number
required

The address, or symbol of the token received in the transfers. This parameter filters the summary to include only transfers involving the specified token on the receiving chain.

fromChain
number

The ID, or key of the chain on the sending side of the transfers. This parameter filters the summary to include only transfers sent from the specified chain.

integrator
string

The integrator string to filter transfers by. This parameter filters the summary to include only transfers for the given integrator.

Response

200 - application/json

Response for GET /analytics/transfers/summary endpoint

Parameters used to query paginated endpoints