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

Info

PreviousFundingNextKline

Get Exchange Info

get

This endpoint allows users to get exchange information.

Responses
200
Success
application/json
500
Internal server error
get
GET /api/v1/info HTTP/1.1
Host: 
Accept: */*
[
  {
    "fundingRate": "0.0000125000000000000000000000",
    "isolatedOnly": false,
    "lotSize": "0.0001",
    "maxLeverage": 50,
    "maxOrderSize": "1000000",
    "maxTick": "1000000",
    "minOrderSize": "10",
    "minTick": "1000",
    "nextFundingRate": "0.0000125000000000000000000000",
    "symbol": "BTC",
    "tickSize": "0.1"
  }
]

Get Current Prices

get

This endpoint allows users to get current prices for all symbols.

Responses
200
Success
application/json
404
No prices data available
500
Internal server error
get
GET /api/v1/info/prices HTTP/1.1
Host: 
Accept: */*
[
  {
    "funding": "0.0000125000000000000000000000",
    "mid": "84050",
    "nextFunding": "0.0000125000000000000000000000",
    "openInterest": "1000000",
    "oracle": "84000",
    "symbol": "BTC",
    "volume24h": "5000000",
    "yesterdayPrice": "83500"
  }
]
  • GETGet Exchange Info
  • GETGet Current Prices