Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.paxoslabs.com/llms.txt

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

Paxos Labs API

The Paxos Labs API V2 provides REST (and GraphQL) endpoints for analytics and data across Paxos onchain products. All list endpoints support cursor-based pagination and a flexible filter query parameter.

Authentication

Include your API key in the x-api-key header:
x-api-key: pxl_<public_id>_<secret>

Base URL

https://api.paxoslabs.com

Endpoints

Amplify — Analytics

EndpointMethodDescription
/v2/amplify/vaultAssetsGETList depositable/withdrawable assets for accounts
/v2/amplify/vaultApysGETHistorical and current account APY data
/v2/amplify/vaultTvlsGETHistorical and current account TVL data
/v2/amplify/vaultCompositionsGETCurrent asset composition for accounts
/v2/amplify/withdrawalRequestsGETWithdrawal requests filtered by status, chain, asset
/v2/amplify/withdrawalVolumesGETHistorical withdrawal volume by time interval
/v2/amplify/liquidityShortfallsGETCurrent liquidity shortfalls across accounts

Amplify — Discovery & Configuration

EndpointMethodDescription
/v2/amplify/vaultsGETAccounts grouped by name with per-chain deployments, contract addresses, per-asset fees, supply caps, min order size, and SLAs

Amplify — Transaction Preparation (Calldata)

EndpointMethodDescription
/v2/core/permitGETDetect authorization method (permit / approval / already approved)
/v2/amplify/depositGETPrepare deposit transaction calldata
/v2/amplify/withdrawGETPrepare withdrawal order calldata
/v2/amplify/withdraw/cancelGETPrepare cancel-withdrawal calldata

Amplify — Display Helpers

EndpointMethodDescription
/v2/amplify/calculateWithdrawalFeeGETPreview the withdrawal fee for a specific offerAmount + wantAsset pair
/v2/amplify/supplyCapsGETRead total deposits, supply cap, and percentage filled (per chain deployment)
/v2/amplify/userPositionsGETRead a user’s share balance, position value in base, and current exchange rate per chain

Address Book

EndpointMethodDescription
/v2/addressBookEntriesGETKnown address entries filtered by chain, address, or name

Webhooks

Coming Soon — Webhook subscriptions for real-time event notifications are under active development.

Pagination

All list endpoints accept pageSize (default 25, max 100) and pageToken. Omit pageToken for the first page; use the returned nextPageToken for subsequent pages.

Filtering

List endpoints accept a filter query string using =, !=, AND, and OR operators:
filter=chainId=1 AND status=PENDING