Get latest analytics for all tokens listed on Plentyswap
GEThttps://api.plenty.network/analytics/tokens
This endpoint returns an array of objects, where each object contains information about a token, including its symbol, name, contract address, FA standard, decimals, current price data, volume data, fees data, and total value locked (TVL) data.
[
{
token: string; // Token symbol
name: string;
contract: string | null; // Tezos contract address
standard: string; // FA standard
tokenId?: number;
decimals: number;
price: {
value: string; // Dollar value
change24H: string; // Percentage change
change7D: string;
change30D: string;
};
volume: {
value24H: string; // Aggregated Dollar value in the last 24 hours
change24H: string;
value7D: string; // Aggregated Dollar value in the last 7 days
};
fees: {
value24H: string;
change24H: string;
value7D: string;
};
tvl: {
value: string;
change24H: string;
};
}
]
Get historical analytics data for a specific token listed on Plentyswap
This endpoint returns an object that contains information about a token, including its symbol, name, contract address, FA standard, decimals, current price data, volume data, fees data, and total value locked (TVL) data.
Path Parameters
Name
Type
Description
tokenSymbol*
String
The symbol of the token present in its metadata
Query Parameters
Name
Type
Description
priceHistory
String
Value could be either day to receive day wise price history for a year, or hour to receive hourly price history for last 7 days.
{
token: string; // Token symbol
name: string;
contract: string | null; // Tezos contract
standard: string; // FA standard
tokenId?: number;
decimals: number;
price: {
value: string; // Dollar value
change24H: string; // Percentage change
change7D: string;
change30D: string;
// key represents the hourly/daily UTC timestamp
history?: { [key: string]: PriceOHLC }[];
volume: {
value24H: string; // Aggregated value in the last 24 hours
change24H: string;
value7D: string;
history?: { [key: string]: string }[];
};
fees: {
value24H: string;
change24H: string;
value7D: string;
history?: { [key: string]: string }[];
};
tvl: {
value: string;
change24H: string;
history?: { [key: string]: string }[];
};
}
Pools
Get latest analytics for all pools on Plentyswap
GEThttps://api.plenty.network/analytics/pools
This endpoint returns an array of objects, where each object contains information about a liquidity pool, including its contract address, symbol, curve type, volume data, fees data, and total value locked (TVL) data.
This endpoint returns an object that contains information about a liquidity pool, including its contract address, symbol, curve type, volume data, fees data, and total value locked (TVL) data.