GET
/
v2
/
analytics
/
transfers
curl --request GET \
  --url https://li.quest/v2/analytics/transfers
{
  "hasNext": false,
  "hasPrevious": false,
  "next": "<string>",
  "previous": "<string>",
  "data": [
    {
      "sending": {
        "txHash": "0xd3ad8fb8798d8440f3a1ec7fd51e102a88e4690f9365fad4eff1a17020376b4a",
        "txLink": "https://polygonscan.com/tx/0xd3ad8fb8798d8440f3a1ec7fd51e102a88e4690f9365fad4eff1a17020376b4a",
        "amount": "13000000",
        "token": {
          "address": "0xd69b31c3225728cc57ddaf9be532a4ee1620be51",
          "symbol": "anyUSDC",
          "decimals": 6,
          "chainId": 137,
          "name": "USDC",
          "coinKey": "anyUSDC",
          "priceUSD": "0",
          "logoURI": ""
        },
        "chainId": 137,
        "gasToken": {
          "address": "0x0000000000000000000000000000000000001010",
          "symbol": "MATIC",
          "decimals": 18,
          "chainId": 137,
          "name": "MATIC",
          "coinKey": "MATIC",
          "priceUSD": "0",
          "logoURI": ""
        },
        "gasAmount": "10000",
        "gasAmountUSD": "0.0",
        "gasPrice": "1000",
        "gasUsed": "1000",
        "timestamp": 1720545119,
        "value": "0"
      },
      "receiving": {
        "txHash": "0xba2793065e20835ef60993144d92e6bc1a86529a70e16c357f66ad13774868ad",
        "txLink": "https://bscscan.com/tx/0xba2793065e20835ef60993144d92e6bc1a86529a70e16c357f66ad13774868ad",
        "amount": "12100000000000000000",
        "token": {
          "address": "0x8965349fb649a33a30cbfda057d8ec2c48abe2a2",
          "symbol": "anyUSDC",
          "decimals": 18,
          "chainId": 56,
          "name": "USDC",
          "coinKey": "anyUSDC",
          "priceUSD": "0",
          "logoURI": ""
        },
        "chainId": 56,
        "gasToken": {
          "address": "0x0000000000000000000000000000000000001010",
          "symbol": "BNB",
          "decimals": 18,
          "chainId": 56,
          "name": "BNB",
          "coinKey": "BNB",
          "priceUSD": "0",
          "logoURI": ""
        },
        "gasAmount": "10000",
        "gasAmountUSD": "0.0",
        "gasPrice": "1000",
        "gasUsed": "1000",
        "timestamp": 1720560232,
        "value": "0"
      },
      "tool": "anyswap",
      "status": "DONE",
      "substatus": "COMPLETED",
      "substatusMessage": "The transfer is complete.",
      "transactionId": "0x0000000000000000000000000000000000001010",
      "fromAddress": "0x0000000000000000000000000000000000001010",
      "toAddress": "0x0000000000000000000000000000000000001010",
      "lifiExplorerLink": "https://explorer.li.fi/tx/0xd3ad8fb8798d8440f3a1ec7fd51e102a88e4690f9365fad4eff1a17020376b4a",
      "metadata": {
        "integrator": "jumper.exchange"
      }
    }
  ]
}

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.

integrator
string

The integrator string to filter by

wallet
string

The sending OR receiving wallet address

status
string

The status of the transfers. Possible values are ALL, DONE, PENDING, and FAILED. The default is DONE

fromTimestamp
number

The oldest timestamp that should be taken into consideration. Defaults to 30 days ago

toTimestamp
number

The newest timestamp that should be taken into consideration. Defaults to now

fromChain
string

The chain where the transfer originates from.

toChain
string

The chain where the transfer ends.

fromToken
string

The token transferred from the originating chain. To use this parameter fromChain must be set.

toToken
string

The token received on the destination chain. To use this parameter toChain must be set.

Response

200 - application/json

Response for GET /analytics/transfers/summary endpoint

Parameters used to query paginated endpoints