Skip to content
Alchemy Logo

User funding

This API is in private preview. Target October 2026; timing is subject to change.

Returns a user's funding-payment history over a time range.

Coming with HyperCore. This read is documented but is not yet callable.

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects userFunding.
userstringYesMaster or sub-account address.
startTimeintegerYesInclusive start time in milliseconds.
endTimeintegerNoInclusive end time in milliseconds; defaults to the current time.
{
  "type": "userFunding",
  "user": "0x0000000000000000000000000000000000000000",
  "startTime": 1735689600000,
  "endTime": 1735776000000
}

FieldTypeDescription
[]arrayFunding-payment records for the requested time range.
[].deltaobjectEvent-specific funding payload.
[].delta.typestringEvent kind; this read returns funding.
[].delta.coinstringMarket identifier.
[].delta.usdcstringFunding payment in USDC; negative values are payments made.
[].delta.szistringSigned position size when the funding payment was applied.
[].delta.fundingRatestringFunding rate.
[].delta.nSamplesinteger | nullNumber of samples used, or null when no sample count is supplied.
[].hashstringTransaction hash that recorded the funding payment.
[].timeintegerMillisecond timestamp of the funding event.

[
  {
    "delta": {
      "type": "funding",
      "coin": "ETH",
      "usdc": "-3.625312",
      "szi": "49.1477",
      "fundingRate": "0.0000417",
      "nSamples": null
    },
    "hash": "0xa166e3fa63c25663024b03f2e0da011a00307e4017465df020210d3d432e7cb8",
    "time": 1681222254710
  }
]
Was this page helpful?