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.

Open /api/v1Back to docs

Base URL

https://ponsv2.app/api/v1

All 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

GET/api/v1

API index. Lists available endpoints.

GET/api/v1/stats

Platform totals: token count, claimed fees, buybacks, burned supply, rewards, strategy breakdown.

GET/api/v1/tokens

All active tokens. Optional query: strategy, limit.

/api/v1/tokens?strategy=buyback_burn&limit=20
GET/api/v1/tokens/:address

One token: strategy, vault balances, recent cycles, staking totals, distributions, explorer links.

/api/v1/tokens/0xd6ea3e349277458b71c96215ed8d3a2d30f8b1d3
GET/api/v1/tokens/:address/cycles

Cycle log for one token. Optional query: limit (max 100).

/api/v1/tokens/0xd6ea3e349277458b71c96215ed8d3a2d30f8b1d3/cycles?limit=40

Quick 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.

Build on the
fee layer.

Try /api/v1/stats
Public API · PonsV2