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

# Get assets

> Retrieve a list of all available cryptocurrencies along with their key metrics. Optionally, search by asset ID or symbol to narrow down the results.



## OpenAPI

````yaml get /assets
openapi: 3.0.0
info:
  title: CoinCap API
  description: >-
    API for accessing cryptocurrency data including assets, rates, exchanges,
    markets, and candles.
  version: '1'
servers:
  - url: https://api.coincap.io/v2
    description: Official CoinCap API Server
  - url: https://virtserver.swaggerhub.com/REXSENDER1/CoinCap/1
    description: SwaggerHub API Auto Mocking
security:
  - bearerAuth: []
tags:
  - name: Asset
    description: >-
      Endpoints related to cryptocurrency data, including details about
      individual assets.
  - name: Rates
    description: Provides exchange rate information for various currencies.
  - name: Exchanges
    description: Information about cryptocurrency exchanges, including trading data.
  - name: Markets
    description: Details about cryptocurrency markets and trading pairs.
  - name: Candles
    description: Historical price data for cryptocurrencies in candlestick format.
paths:
  /assets:
    get:
      tags:
        - Asset
      summary: Retrieve all cryptocurrencies
      description: >-
        Retrieve a list of all available cryptocurrencies along with their key
        metrics. Optionally, search by asset ID or symbol to narrow down the
        results.
      parameters:
        - name: search
          in: query
          description: search by asset id (bitcoin) or symbol (BTC)
          required: false
          style: form
          explode: true
          schema:
            type: string
        - name: ids
          in: query
          description: query with multiple ids=bitcoin,ethereum,monero
          required: false
          style: form
          explode: true
          schema:
            type: string
        - name: limit
          in: query
          description: Limit the number of results
          required: false
          style: form
          explode: true
          schema:
            type: integer
        - name: offset
          in: query
          description: offset
          required: false
          style: form
          explode: true
          schema:
            type: integer
      responses:
        '200':
          description: A list of all cryptocurrencies.
          content:
            application/json:
              schema:
                type: array
                properties:
                  id:
                    type: string
                    description: The unique ID of the cryptocurrency.
                  rank:
                    type: string
                    description: The rank of the cryptocurrency by market cap.
                  symbol:
                    type: string
                    description: The trading symbol for the cryptocurrency.
                  name:
                    type: string
                    description: The full name of the cryptocurrency.
                  supply:
                    type: string
                    description: The circulating supply of the cryptocurrency.
                  maxSupply:
                    type: string
                    description: The maximum supply of the cryptocurrency.
                  marketCapUsd:
                    type: string
                    description: The market capitalization in USD.
                  volumeUsd24Hr:
                    type: string
                    description: The 24-hour trading volume in USD.
                  priceUsd:
                    type: string
                    description: The current price of the cryptocurrency in USD.
                  changePercent24Hr:
                    type: string
                    description: The percentage change in price in the last 24 hours.
                  vwap24Hr:
                    type: string
                    description: The volume-weighted average price in the last 24 hours.
                  explorer:
                    type: string
                    description: A URL to the blockchain explorer for the cryptocurrency.
                items:
                  type: object
              example:
                id: bitcoin
                rank: '1'
                symbol: BTC
                name: Bitcoin
                supply: '19788862.0000000000000000'
                maxSupply: '21000000.0000000000000000'
                marketCapUsd: '1904557171625.0952172577833640'
                volumeUsd24Hr: '12724040223.1452060699561802'
                priceUsd: '96243.8957644504882220'
                changePercent24Hr: '0.9762522061124105'
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````