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

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

Address Book

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

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