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

# Get All Cryptocurrencies

<Warning>
  Due to heavy data load, the docs might crash on your computer if you try this
  endpoint in the playground. Try running it on a codebase, Postman, or your
  browser instead.
</Warning>

### Query details

The **fields** query parameter allows you to specify which fields you want to receive:

* `id` - the cryptocurrency ID
* `symbol` - the cryptocurrency symbol
* `name` - the cryptocurrency name
* `logo` - the cryptocurrency logo image URL
* `price` - the current price of the cryptocurrency
* `price_change_1h` - the price change in the last 1 hour
* `price_change_24h` - the price change in the last 24 hours
* `price_change_7d` - the price change in the last 7 days
* `price_change_30d` - the price change in the last 30 days
* `price_change_1y` - the price change in the last 1 year
* `market_cap` - the market cap of the cryptocurrency
* `liquidity` - the liquidity of the cryptocurrency
* `contracts` - the contracts of the cryptocurrency
* `blockchains` - the blockchains of the cryptocurrency
* `chat` - the chat URL of the cryptocurrency
* `twitter` - the Twitter URL of the cryptocurrency
* `website` - the website URL of the cryptocurrency
* `rank` - the rank of the cryptocurrency

Fields are comma-separated. For market data usage, please note that **/all** endpoint caches data for 1 hour - if you want real-time data, use [market/multi-data](/rest-api-reference/endpoint/market-multi-data)
or [market/data](/rest-api-reference/endpoint/market-data) endpoints.

### Usage Examples

* Query all data with `default` fields

```bash theme={null}
curl -X GET "https://demo-api.mobula.io/api/1/all"
```

* Query all data with the `logo` field

```bash theme={null}
curl -X GET "https://demo-api.mobula.io/api/1/all?fields=logo"
```

* Query all data with the `price` field

```bash theme={null}
curl -X GET "https://demo-api.mobula.io/api/1/all?fields=price"
```


## OpenAPI

````yaml get /1/all
openapi: 3.0.0
info:
  version: 1.0.0
  title: Mobula API
  description: >-
    Documentation of the Mobula API


    **Demo API**: The default server (demo-api.mobula.io) is a demo API with
    rate limits.

    For production use, please use api.mobula.io with an API key from
    https://admin.mobula.io
servers:
  - url: https://demo-api.mobula.io/api/
    description: Demo API (rate limited, for testing only)
  - url: https://api.mobula.io/api/
    description: Production API (requires API key)
security: []
tags:
  - name: V2 - Token
    description: Token details, price, security, ATH, and holder data
  - name: V2 - Market Data
    description: Market details, OHLCV history, and lighthouse metrics
  - name: V2 - Trades
    description: Token trades, enriched trades, and trade filters
  - name: V2 - Wallet
    description: Wallet positions, activity, trades, analysis, and labels
  - name: V2 - Assets
    description: Cross-chain asset details and price history
  - name: V2 - Swap
    description: Swap quoting and execution
  - name: V2 - Perps
    description: Perpetual futures quoting, execution, and positions
  - name: V2 - Bridge
    description: Cross-chain bridge quoting and intent status (Alpha Preview)
  - name: V2 - DeFi
    description: Bonding pools and pulse data
  - name: V2 - Search
    description: Universal fast search
  - name: V2 - Usage
    description: Per-key API and WebSocket usage history
  - name: V2 - Blockchains
    description: System metadata and chain listings
  - name: V2 - Prediction Markets
    description: >-
      Polymarket markets/events, wallet positions, and the full execution stack
      (auth, order build/submit/cancel, approvals, pUSD wrap/unwrap, deploy,
      deposit/withdraw, redeem). Alpha — see /api/2/pm/*.
  - name: V1 - Market Data
    description: Market prices, history, sparklines, pairs, and multi-data
  - name: V1 - Wallet
    description: Wallet portfolio, transactions, history, and NFTs
  - name: V1 - Token
    description: First buyers
  - name: V1 - Trades
    description: Market trades by pair
  - name: V1 - Metadata
    description: Token metadata, categories, trendings, and news
  - name: V1 - Assets
    description: List all assets
  - name: V1 - Search
    description: Search for assets, tokens, and pairs
  - name: V1 - DeFi
    description: Bonding pool pulse data
  - name: V1 - Blockchains
    description: Blockchain listings, pairs, and stats
  - name: V1 - Webhooks
    description: Webhook management
  - name: V1 - Feed
    description: Custom feed creation
paths:
  /1/all:
    get:
      tags:
        - V1 - Assets
      summary: Get all assets
      parameters:
        - schema:
            type: string
            default: ''
          required: false
          name: fields
          in: query
      responses:
        '200':
          description: All response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        name:
                          type: string
                        symbol:
                          type: string
                        logo:
                          type: string
                          nullable: true
                        price:
                          type: number
                          nullable: true
                        price_change_1h:
                          type: number
                        price_change_24h:
                          type: number
                        price_change_7d:
                          type: number
                        price_change_1m:
                          type: number
                        price_change_1y:
                          type: number
                        market_cap:
                          type: number
                        liquidity:
                          type: number
                        volume:
                          type: number
                        blockchains:
                          type: array
                          items:
                            type: string
                        contracts:
                          type: array
                          items:
                            type: string
                        decimals:
                          type: array
                          items:
                            type: number
                        website:
                          type: string
                          nullable: true
                        twitter:
                          type: string
                          nullable: true
                        chat:
                          type: string
                          nullable: true
                      required:
                        - id
                        - name
                        - symbol
                required:
                  - data

````