get https://web3api.io/api/v2/market/defi/liquidity/providers//events
For a given wallet (EOA), this endpoint returns all events associated with the EOA's participation providing liquidity into pools (mint, burn and swap).
Events can be filtered by pair and time, and are ordered in time ascending order.
Unless startDate
and endDate
filters are provided, events are returned over the last 24 hours by default.
Response Data
Field | Type | Description | Metadata |
---|---|---|---|
payload[].timestamp | string | The timestamp of the liquidity event. | |
payload[].blockNumber | number | The block number of the liquidity event. | y |
payload[].transactionHash | string | The transaction hash. | |
payload[].liquidityProviderAddress | string | The address of the liquidity provider that the event is associated with. | |
payload[].event | string | The liquidity event type (mint , burn , skim , swap , etc) | |
payload[]. poolAddress | string | The address of the pair or liquidity pool, i.e. the address of the lp token. | |
payload[].poolTokenBalance | number | The number of lp tokens the provider holds in this pool. | |
payload[].poolTokenDelta | number | The delta/change of lp tokens as a result of this event. | |
payload[].priceNative | number | Ratio between tokens in pool. | |
payload[].poolName | string | Name of the pair or liquidity pool. | y |
payload[].token0Address | string | The address of token0 in the pair or liquidity pool. | y |
payload[].token0Name | string | The name of token0 in the pair or liquidity pool. | y |
payload[].token0Balance | string | The balance of token0 in the pair or liquidity pool. | y |
payload[].token0Delta | string | The delta/change of token0 in the pair or liquidity pool. | y |
payload[].token1Address | string | The address of token1 in the pair or liquidity pool. | y |
payload[].token1Name | string | The name of token1 in the pair or liquidity pool. | y |
payload[].token1Balance | string | The balance of token1 in the pair or liquidity pool. | y |
payload[].token1Delta | string | The delta/change of token1 in the pair or liquidity pool. | y |