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

# /coinglass/coins/search

> List crypto coins with derivatives market data, ranked and filtered

**Price:** 5 credits per 100 results



## OpenAPI

````yaml /openapi/crypto-defi.json post /api/coinglass/coins/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/coinglass/coins/search:
    post:
      tags:
        - /coinglass
      summary: /coinglass/coins/search
      description: |-
        List crypto coins with derivatives market data, ranked and filtered

        **Price:** 5 credits per 100 results
      operationId: __api_coinglass_coins_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CoinglassCoinsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CoinglassMarketCoin'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CoinglassCoinsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        count:
          type: integer
          minimum: 1
        keyword:
          type: string
          default: ''
        exchange:
          anyOf:
            - $ref: '#/components/schemas/CoinglassExchange'
            - type: 'null'
        sort:
          $ref: '#/components/schemas/CoinglassCoinSort'
          default: openInterest
        order:
          $ref: '#/components/schemas/CoinglassOrder'
          default: desc
      type: object
      required:
        - count
    CoinglassMarketCoin:
      properties:
        '@type':
          type: string
          default: CoinglassMarketCoin
        symbol:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        market_cap:
          anyOf:
            - type: number
            - type: 'null'
        open_interest:
          anyOf:
            - type: number
            - type: 'null'
        open_interest_amount:
          anyOf:
            - type: number
            - type: 'null'
        oi_market_cap_ratio:
          anyOf:
            - type: number
            - type: 'null'
        oi_volume_ratio:
          anyOf:
            - type: number
            - type: 'null'
        volume_usd:
          anyOf:
            - type: number
            - type: 'null'
        avg_funding_rate_by_oi:
          anyOf:
            - type: number
            - type: 'null'
        avg_funding_rate_by_volume:
          anyOf:
            - type: number
            - type: 'null'
        long_short_ratio_1h:
          anyOf:
            - type: number
            - type: 'null'
        long_short_ratio_4h:
          anyOf:
            - type: number
            - type: 'null'
        long_short_ratio_24h:
          anyOf:
            - type: number
            - type: 'null'
        price_change_percentage_1h:
          anyOf:
            - type: number
            - type: 'null'
        price_change_percentage_4h:
          anyOf:
            - type: number
            - type: 'null'
        price_change_percentage_24h:
          anyOf:
            - type: number
            - type: 'null'
        price_change_percentage_7d:
          anyOf:
            - type: number
            - type: 'null'
        oi_change_percentage_1h:
          anyOf:
            - type: number
            - type: 'null'
        oi_change_percentage_4h:
          anyOf:
            - type: number
            - type: 'null'
        oi_change_percentage_24h:
          anyOf:
            - type: number
            - type: 'null'
        volume_change_percentage_1h:
          anyOf:
            - type: number
            - type: 'null'
        volume_change_percentage_4h:
          anyOf:
            - type: number
            - type: 'null'
        volume_change_percentage_24h:
          anyOf:
            - type: number
            - type: 'null'
        liquidation_usd_1h:
          anyOf:
            - type: number
            - type: 'null'
        liquidation_usd_4h:
          anyOf:
            - type: number
            - type: 'null'
        liquidation_usd_24h:
          anyOf:
            - type: number
            - type: 'null'
        long_liquidation_usd_24h:
          anyOf:
            - type: number
            - type: 'null'
        short_liquidation_usd_24h:
          anyOf:
            - type: number
            - type: 'null'
        rsi_15m:
          anyOf:
            - type: number
            - type: 'null'
        rsi_1h:
          anyOf:
            - type: number
            - type: 'null'
        rsi_4h:
          anyOf:
            - type: number
            - type: 'null'
        rsi_12h:
          anyOf:
            - type: number
            - type: 'null'
        rsi_1d:
          anyOf:
            - type: number
            - type: 'null'
        rsi_1w:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - symbol
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CoinglassExchange:
      type: string
      enum:
        - Binance
        - OKX
        - Bybit
        - Crypto.com
        - Gate
        - Bitget
        - BingX
        - MEXC
        - Bitunix
        - Hyperliquid
        - dYdX
        - Deribit
        - Bitfinex
        - Bitmex
        - CoinEx
        - Kraken
        - Coinbase
        - HTX
    CoinglassCoinSort:
      type: string
      enum:
        - openInterest
        - h24VolUsd
        - h24PriceChangePercent
        - d7PriceChangePercent
        - h1OiChangePercent
        - h4OiChangePercent
        - h24OiChangePercent
        - h24LiquidationUsd
        - avgFundingRateByOi
        - h1Ls
        - marketCap
        - rsi4h
    CoinglassOrder:
      type: string
      enum:
        - asc
        - desc
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````