Pacifica
  • Getting Started
    • Closed Alpha Guide
      • Link To Guide PDF
    • Closed Alpha Trading Competition
  • Trading on Pacifica
    • Overview
    • Contract Specifications
      • Oracle Price & Mark Price
      • Settlement Mechanism
    • Order Types
      • Market Order
      • Limit Order
      • Order Rules & Constraints
    • Margin & Leverage
    • Funding Rates
    • Liquidations
  • API Documentation
    • API
      • REST
        • Account
        • Agent
        • Funding
        • Info
        • Kline
        • Orders
        • Portfolio
        • Positions
        • Models
      • Websocket
        • Orderbook
        • Trades
        • Orders
        • Positions
        • User Order History
        • User Trade History
        • Candle
        • Account Data
    • Specification
  • Other
    • Brand Assets
    • Contact Us
    • Glossary of Terms
Powered by GitBook
On this page
  1. API Documentation
  2. API
  3. REST

Funding

PreviousAgentNextInfo

Get Funding History

get

This endpoint allows users to get funding history.

Query parameters
accountstringRequired

User account address

limitinteger · int64 | nullableOptional

Maximum number of records to return (optional, defaults to system defined limit)

offsetinteger · int64 | nullableOptional

Number of records to skip (optional, defaults to 0)

Responses
200
Successfully retrieved funding history
application/json
400
Invalid request parameters
401
Unauthorized access
500
Internal server error
get
GET /api/v1/funding/history?account=text HTTP/1.1
Host: 
Accept: */*
[
  {
    "amount": "0.0067",
    "createdAt": "2025-03-25T16:00:06.600783Z",
    "historyId": 12551,
    "payout": "-0.007351166970000000000000000",
    "rate": "0.0000125000000000000000000000",
    "side": "bid",
    "symbol": "BTC"
  }
]