> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Trending Search

> What is trending on CoinGecko right now — 15 coins, 7 NFTs and 6 categories by search activity.

CoinGecko's current trending board, ranked by search activity on CoinGecko itself: `coins` (15 entries), `nfts` (7) and `categories` (6). Each coin carries `id`, `name`, `symbol`, `market_cap_rank`, `price_btc`, `score` and a nested `data` block. Takes no parameters. Use it as a discovery entry point when the user named no specific asset. It reflects attention rather than price action — for movers ranked by market data use [`get_coingecko_coins_markets`](/docs/api-reference/coingecko/get_coingecko-coins-markets) ordered by volume.


## OpenAPI

````yaml openapi/coingecko.json GET /coingecko/search/trending
openapi: 3.0.3
info:
  title: CoinGecko API
  version: 1.0.0
  description: >-
    CoinGecko crypto market data routed through the AIsa gateway. Covers coin
    metadata, live and historical prices, OHLC, exchanges, tickers, categories,
    and trending search. Proxies the public CoinGecko v3 API at
    `https://api.coingecko.com/api/v3/`.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /coingecko/search/trending:
    get:
      summary: Trending Search
      description: >-
        CoinGecko's current trending board, ranked by search activity on
        CoinGecko itself: `coins` (15 entries), `nfts` (7) and `categories` (6).
        Each coin carries `id`, `name`, `symbol`, `market_cap_rank`,
        `price_btc`, `score` and a nested `data` block. Takes no parameters. Use
        it as a discovery entry point when the user named no specific asset. It
        reflects attention rather than price action — for movers ranked by
        market data use `get_coingecko_coins_markets` ordered by volume.
      operationId: get_coingecko_search_trending
      responses:
        '200':
          description: Trending coins, nfts, and categories.
          content:
            application/json:
              example:
                coins:
                  - item:
                      id: bitcoin
                      name: Bitcoin
                      symbol: BTC
                      market_cap_rank: 1
              schema:
                $ref: '#/components/schemas/CoinGeckoObject'
components:
  schemas:
    CoinGeckoObject:
      type: object
      additionalProperties: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````