Plenty's Unified API Documentation
  • Welcome to Plenty's Unified API
  • 📜Terms of use
    • Cost
    • Rate Limit
  • 🌐Endpoints
    • Contracts
    • Analytics
    • Integrations
    • V3 CFMM
    • Vote Escrow
  • ⚙️Open Source
    • Repositories
Powered by GitBook
On this page
  • Version 1
  • Get all the token pairs on Plenty
  • Get the market data of all pairs on Plenty
  • Version 2
  • Get the market data of all pairs on Plenty
  1. Endpoints

Integrations

API endpoints to provide ticker data in the format useful for exchange aggregators

PreviousAnalyticsNextV3 CFMM

Last updated 1 year ago

We currently have an integration active on .

Version 1 and version 2 below do not have any connection to Plenty's v1 and v2. These represent various available schemas under integrations.

Version 1

Get all the token pairs on Plenty

GET https://api.plenty.network/integrations/v1/pairs

This endpoint returns an array of objects where each object contains information on the available pairs, the ticker id, base and target currency and unique identifier.

[
  {
    tickerId: string; // Eg: USDC/USDT
    base: string; // Token symbol
    target: string; // Token symbol
    poolId: string; // Tezos contract address
  }
]

Get the market data of all pairs on Plenty

GET https://api.plenty.network/integrations/v1/tickers

This endpoint returns an array of objects where each object contains information on the market data of the pair, like the last price in the target currency, base and target volume of the last 24 hours and pool identifier.

[
  {
    tickerId: string;
    baseCurrency: string; // Token symbol
    targetCurrency: string; // Token symbol
    lastPrice: string;
    baseVolume: string;
    targetVolume: string;
    poolId: string; // Tezos contract
  }
]

Version 2

Get the market data of all pairs on Plenty

GET https://api.plenty.network/integrations/v2/tickers

This endpoint returns an array of objects where each object contains information on the market data of the pair, like the last price in the quote currency, base volume of the last 24 hours and pool identifier.

[
  {
    market: string; // Ticker id. Eg: USDT-USDC
    base: string; // Token symbol
    quote: string; // Token symbol
    price_quote: string;
    volume_base: string;
  }
]
Coingecko
🌐
Page cover image