POST
GetFundingHistory🔐 Auth RequiredGet funding payment history.
Request
| Parameter | Type |
|---|---|
addressoptional | Address |
market_idoptional | uint32 |
limitoptional | uint32 |
Response
| Field | Type |
|---|---|
payments | FundingPayment[] |
Example
Requesttypescript
import { RealmClient } from '@realm/sdk';const client = new RealmClient('https://api.realm.com');await client.connect(wallet);const response = await client.getFundingHistory({ /* params */ });console.log(response);
Responsejson
{// Response fields}