Back to docs
Docs · API
Public API
A read-only HTTP API for everything public on PonsV3. Build dashboards, bots, indexers, or anything that sits on top of the fee engines. No API key, CORS open.
Base URL
https://ponsv3.fun/api/v1
All responses are JSON. Amounts from the chain are returned as decimal strings in wei or raw token units, so convert them yourself rather than trusting anyone's display formatting.
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 and portfolio tools
- Analytics over every vault without scraping the website
Endpoints
GET
/api/v1API index. Lists available endpoints.
GET
/api/v1/statsPlatform totals: token count, claimed fees, buybacks, burned supply, rewards, strategy breakdown.
GET
/api/v1/tokensAll active tokens. Optional query: strategy, limit.
/api/v1/tokens?strategy=buyback_burn&limit=20GET
/api/v1/tokens/:addressOne token: strategy, vault balances, recent cycles, staking totals, distributions, explorer links.
/api/v1/tokens/0xTOKENGET
/api/v1/tokens/:address/cyclesCycle log for one token. Optional query: limit (max 100).
/api/v1/tokens/0xTOKEN/cycles?limit=40Quick examples
List tokens
curl https://ponsv3.fun/api/v1/tokens
Platform stats
curl https://ponsv3.fun/api/v1/stats
One token
curl https://ponsv3.fun/api/v1/tokens/0xTOKEN
Filter by strategy
curl "https://ponsv3.fun/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 (*), so browser apps can call the API directly.
- Responses are cacheable for about 30 seconds. Please do not hammer the endpoints.
- Strategy values: liquidity, buyback_burn, staking, holder_rewards.