Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/pacifica-fi/docs-migrate/llms.txt

Use this file to discover all available pages before exploring further.

The Spot endpoints provide read-only data about spot assets available on Pacifica, including their trading specifications, collateral eligibility, and the bridge parameters needed to deposit or withdraw assets on-chain. No authentication is required for any of these endpoints.

GET /api/v1/spot_assets — Get Spot Assets

Returns a list of all spot assets available on the exchange, including trading parameters and collateral eligibility. Results are sorted alphabetically by symbol. Request
include_inactive
boolean
Include inactive spot assets. Defaults to false.
collateral_enabled_only
boolean
Return only assets eligible for unified margin collateral. Defaults to false.
curl "https://api.pacifica.fi/api/v1/spot_assets"
Response
{
  "success": true,
  "data": [
    {
      "symbol": "SOL",
      "tick_size": "0.01",
      "lot_size": "0.01",
      "active": true,
      "collateral_enabled": true,
      "ltv_ratio": "0.80",
      "created_at": 1716200000000,
      "updated_at": 1716200000000
    }
  ],
  "error": null,
  "code": null
}
symbol
string
Spot asset symbol.
tick_size
decimal string
Minimum price increment for this asset.
lot_size
decimal string
Minimum quantity increment for this asset.
active
boolean
Whether the asset is currently active for trading.
collateral_enabled
boolean
Whether the asset can be used as unified margin collateral.
ltv_ratio
decimal string
Loan-to-value ratio when the asset is used as collateral, e.g. "0.80" represents 80%.
created_at
integer
Timestamp (ms) when the asset was listed.
updated_at
integer
Timestamp (ms) of the last update.

GET /api/v1/spot_assets/bridge/info — Get Bridge Info

Returns bridge parameters for all spot assets, including minimum deposit amounts, withdrawal fees, and on-chain Solana program addresses. Response is cached for 1 minute. Request This endpoint takes no query parameters.
curl "https://api.pacifica.fi/api/v1/spot_assets/bridge/info"
Response
{
  "success": true,
  "data": [
    {
      "symbol": "SOL",
      "minimum_deposit": "0.01",
      "withdrawal_fee": "0.001",
      "bridge_program": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
      "mint": null,
      "decimals": 9
    }
  ],
  "error": null,
  "code": null
}
symbol
string
Spot asset symbol.
minimum_deposit
decimal string
Minimum deposit amount for this asset.
withdrawal_fee
decimal string
Fee charged on withdrawals for this asset.
bridge_program
string
Solana program address for the bridge contract.
mint
string or null
SPL token mint address. null for native SOL.
decimals
integer
Token decimal precision (e.g. 9 for SOL).

GET /api/v1/spot_assets/bridge/parameters/ — Get Bridge Parameters

Returns bridge parameters for a single spot asset identified by its symbol. Request
symbol
string
required
Spot asset symbol, e.g. SOL.
curl "https://api.pacifica.fi/api/v1/spot_assets/bridge/parameters/SOL"
Response
{
  "success": true,
  "data": {
    "symbol": "SOL",
    "minimum_deposit": "0.01",
    "withdrawal_fee": "0.001",
    "bridge_program": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
    "mint": null,
    "decimals": 9
  },
  "error": null,
  "code": null
}
symbol
string
Spot asset symbol.
minimum_deposit
decimal string
Minimum deposit amount.
withdrawal_fee
decimal string
Fee charged on withdrawals.
bridge_program
string
Solana program address for the bridge contract.
mint
string or null
SPL token mint address. null for native SOL.
decimals
integer
Token decimal precision.

Build docs developers (and LLMs) love