curl --request GET \
--url https://api.example.com/v2/amplify/supplyCaps \
--header 'x-api-key: <api-key>'{
"supplyCaps": [
{
"vaultAddress": "0xbbbb000000000000000000000000000000000001",
"chainId": 84532,
"totalSupplyInBase": "1037.937273",
"supplyCap": "5000000.00",
"percentageFilled": "20.3893"
}
],
"nextPageToken": "eyJvZmZzZXQiOjI1fQ=="
}Returns up-to-the-block totalSupplyInBase, supplyCap, and percentageFilled per chain each vault is deployed on. totalSupplyInBase and supplyCap are both denominated in the vault base asset, so they are directly comparable. The filter parameter is optional; narrow with the vaultAddress and/or chainId flags, or omit it to return every live vault deployment. Defaults: pageSize=25 (max 100); omit pageToken for the first page.
curl --request GET \
--url https://api.example.com/v2/amplify/supplyCaps \
--header 'x-api-key: <api-key>'{
"supplyCaps": [
{
"vaultAddress": "0xbbbb000000000000000000000000000000000001",
"chainId": 84532,
"totalSupplyInBase": "1037.937273",
"supplyCap": "5000000.00",
"percentageFilled": "20.3893"
}
],
"nextPageToken": "eyJvZmZzZXQiOjI1fQ=="
}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.
API key in format: pxl_<public_id>_
Maximum items per page. Default: 25. Min: 1, max: 100.
1 <= x <= 10025
Opaque token for the next page. Omit for the first page.
Filter string. Optional flags: vaultAddress (hex), chainId (number). Example: vaultAddress=0xbbbb000000000000000000000000000000000001 AND chainId=84532
"vaultAddress=0xbbbb000000000000000000000000000000000001 AND chainId=84532"