Docs / API
Public API.
Read-only HTTP API for everything public on PonsV2. Use it to build dashboards, bots, indexers, or apps that sit on top of the fee engines. No API key. CORS open for browser clients.
Base URL
https://ponsv2.app/api/v1All responses are JSON. Amounts that come from the chain are returned as decimal strings in wei or raw token units. Never trust display formatting from a third party. Convert yourself.
What you can build
- Leaderboards for burned supply, claimed fees, or rewards paid
- Bots that watch cycle logs and alert on burns or payouts
- Custom token pages or portfolio tools
- Analytics over every vault without scraping the website
Endpoints
/api/v1API index. Lists available endpoints.
/api/v1/statsPlatform totals: token count, claimed fees, buybacks, burned supply, rewards, strategy breakdown.
/api/v1/tokensAll active tokens. Optional query: strategy, limit.
/api/v1/tokens?strategy=buyback_burn&limit=20/api/v1/tokens/:addressOne token: strategy, vault balances, recent cycles, staking totals, distributions, explorer links.
/api/v1/tokens/0xd6ea3e349277458b71c96215ed8d3a2d30f8b1d3/api/v1/tokens/:address/cyclesCycle log for one token. Optional query: limit (max 100).
/api/v1/tokens/0xd6ea3e349277458b71c96215ed8d3a2d30f8b1d3/cycles?limit=40Quick examples
List tokens
curl https://ponsv2.app/api/v1/tokens
Platform stats
curl https://ponsv2.app/api/v1/stats
Official token
curl https://ponsv2.app/api/v1/tokens/0xd6ea3e349277458b71c96215ed8d3a2d30f8b1d3
Filter by strategy
curl "https://ponsv2.app/api/v1/tokens?strategy=buyback_burn"
Rules
- Read-only. There is no write endpoint for launches or vault actions.
- Vault private keys are never exposed.
- CORS is open (*). Browser apps can call the API directly.
- Responses are cacheable for about 30 seconds. Do not hammer the endpoints.
- Strategy values: liquidity, buyback_burn, staking, holder_rewards.