coingecko-openapi-client
Version:
Coingecko openapi client
17 lines (16 loc) • 763 B
TypeScript
import type { CancelablePromise } from '../core/CancelablePromise';
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
export declare class TrendingService {
readonly httpRequest: BaseHttpRequest;
constructor(httpRequest: BaseHttpRequest);
/**
* Get trending search coins (Top-7) on CoinGecko in the last 24 hours
* * Top-7 trending coins on CoinGecko as searched by users in the last 24 hours (Ordered by most popular first).
* * Top-5 trending NFTs on CoinGecko based on the highest trading volume in the last 24 hours
*
* Cache / Update Frequency: every 10 minutes
* @returns any List trending coins by most popular first
* @throws ApiError
*/
getSearchTrending(): CancelablePromise<any>;
}