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

# Currency List with Market Data

> Returns a paginated market table of cryptocurrencies with key market metrics, with sorting and pagination.<br/><br/>Available from&#58; <Badge color="gray">Sandbox</Badge><br/>Cost&#58; <Badge color="surface">1 credit per request</Badge>

<Note>
  Supports conversion via the convert parameter.
</Note>

<Tip>
  To resolve a name or ticker to an id, use [/currencies/search](/api-reference/currencies/currency-search) instead of scanning pages.
</Tip>

<Tip>
  Filter to one ecosystem’s projects with `ecosystemId` — get IDs from [/ecosystems/list](/api-reference/ecosystems/ecosystems-list).
</Tip>


## OpenAPI

````yaml https://api.cryptorank.io/v3/documentation-json get /v3/currencies/list
openapi: 3.0.0
info:
  title: Cryptorank API V3
  description: >
    # Overview


    Cryptorank Public API v3 — comprehensive cryptocurrency data for B2B clients
    and partners.


    Useful Links:

    - [API Plans](https://cryptorank.io/public-api)

    - [Dashboard](https://cryptorank.io/public-api/dashboard)


    # Getting Started


    Primary Server URL:
    [https://api.cryptorank.io/v3/](https://api.cryptorank.io/v3/)


    **Authentication**


    Generate an API key in the
    [dashboard](https://cryptorank.io/public-api/dashboard) and pass it in the
    `X-Api-Key` header.


    Keep your keys secret — never commit them to public repositories or expose
    them in client-side code.
  version: 3.0.0
  contact:
    name: Cryptorank Team
    url: https://cryptorank.io
    email: info@cryptorank.io
servers:
  - url: https://api.cryptorank.io
security: []
tags: []
paths:
  /v3/currencies/list:
    get:
      tags:
        - Currencies
      summary: Currency List with Market Data
      description: >-
        **Description**


        Returns a paginated market table of cryptocurrencies with key market
        metrics, with sorting and pagination.


        > **Note:** Supports conversion via the convert parameter.


        > **Tip:** To resolve a name or ticker to an id, use
        [/currencies/search](/api-reference/currencies/currency-search) instead
        of scanning pages.


        > **Tip:** Filter to one ecosystem’s projects with `ecosystemId` — get
        IDs from [/ecosystems/list](/api-reference/ecosystems/ecosystems-list).


        **Access**

        - Available from: **Sandbox**

        - Cost: 1 credit per request
      operationId: CurrenciesController_getList
      parameters:
        - name: page
          required: false
          in: query
          description: Page number (1-based). Returns up to 100 items per page.
          schema:
            minimum: 1
            maximum: 1000
            default: 1
            type: number
        - name: sortBy
          required: false
          in: query
          description: Sort field.
          schema:
            default: id
            type: string
            enum:
              - id
              - rank
              - price
              - marketCap
              - volume24h
              - priceChangePercent24h
        - name: sortOrder
          required: false
          in: query
          description: Sort direction. For `rank`, `asc` puts top-1 first.
          schema:
            default: asc
            type: string
            enum:
              - asc
              - desc
        - name: convert
          required: false
          in: query
          description: >-
            Fiat ISO code for monetary fields (e.g. USD, EUR, RUB, AED). See GET
            /v3/fiat/list for the full list.
          schema:
            default: USD
            type: string
        - name: ecosystemId
          required: false
          in: query
          description: >-
            Filter to coins that are core projects of this ecosystem. Get IDs
            from GET /v3/ecosystems/list.
          schema:
            example: 17
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - meta
                  - status
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CurrencyListItemDto'
                  meta:
                    $ref: '#/components/schemas/ListMetaDto'
                  status:
                    $ref: '#/components/schemas/ResponseStatusDto'
        '400':
          description: Request validation failed
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - VALIDATION_ERROR
                        example: VALIDATION_ERROR
                      message:
                        type: string
                        example: Validation failed
                      status:
                        type: number
                        example: 400
        '401':
          description: API key is missing or invalid
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - API_KEY_MISSING
                          - API_KEY_INVALID
                        example: API_KEY_MISSING
                      message:
                        type: string
                        example: API key is missing
                      status:
                        type: number
                        example: 401
        '403':
          description: >-
            No active subscription, the endpoint is not available in your plan,
            or the request goes beyond what your plan allows
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - NO_ACTIVE_SUBSCRIPTION
                          - ENDPOINT_NOT_AVAILABLE
                          - PLAN_LIMIT_EXCEEDED
                        example: NO_ACTIVE_SUBSCRIPTION
                      message:
                        type: string
                        example: No active subscription found
                      status:
                        type: number
                        example: 403
        '429':
          description: Rate limit or credit limit exceeded
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - RATE_LIMIT_EXCEEDED
                          - DAILY_CREDITS_EXCEEDED
                          - MONTHLY_CREDITS_EXCEEDED
                        example: RATE_LIMIT_EXCEEDED
                      message:
                        type: string
                        example: Rate limit exceeded
                      status:
                        type: number
                        example: 429
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - INTERNAL_ERROR
                        example: INTERNAL_ERROR
                      message:
                        type: string
                        example: Internal server error
                      status:
                        type: number
                        example: 500
      security:
        - X-Api-Key: []
components:
  schemas:
    CurrencyListItemDto:
      type: object
      properties:
        id:
          type: number
          example: 1
          description: Unique numeric identifier.
        slug:
          type: string
          example: bitcoin
          description: URL-friendly entity slug.
        symbol:
          type: string
          example: BTC
          nullable: true
          description: Native token symbol (e.g. 'ETH', 'BNB'); null when unknown.
        name:
          type: string
          example: Bitcoin
          description: Display name.
        rank:
          type: number
          example: 1
          nullable: true
          description: CryptoRank rank; null when unranked.
        imageUrl:
          type: string
          example: https://images.cryptorank.io/coins/150x150.bitcoin1524754012028.png
          nullable: true
          description: Coin logo (150×150); null when no image is available.
        price:
          type: string
          example: '65000.5'
          description: Price in the convert currency (default USD).
        priceChangePercent24h:
          type: number
          example: 2.34
          nullable: true
          description: 24h price change, percent; null when unavailable.
        marketCap:
          type: string
          example: '1280000000000'
          nullable: true
          description: >-
            Market cap in the convert currency (default USD); null when
            unavailable.
        volume24h:
          type: string
          example: '32000000000'
          description: 24h trading volume in the convert currency (default USD).
        circulatingSupply:
          type: string
          example: '19700000'
          nullable: true
          description: >-
            Circulating supply (tokens currently in circulation); null when
            unavailable.
      required:
        - id
        - slug
        - symbol
        - name
        - rank
        - imageUrl
        - price
        - priceChangePercent24h
        - marketCap
        - volume24h
        - circulatingSupply
    ListMetaDto:
      type: object
      properties:
        page:
          type: number
          example: 1
          description: Current page number (1-based)
        pageSize:
          type: number
          example: 25
          description: >-
            Fixed number of items per page for this endpoint (varies per
            endpoint)
        hasNextPage:
          type: boolean
          example: true
          description: Whether a further page of results exists
      required:
        - page
        - pageSize
        - hasNextPage
    ResponseStatusDto:
      type: object
      properties:
        usedCredits:
          type: number
          example: 1
          description: Credits charged for this request
        timestamp:
          type: number
          example: 1780000000000
          description: Server time of the response. Unix timestamp in milliseconds
      required:
        - usedCredits
        - timestamp
  securitySchemes:
    X-Api-Key:
      name: X-Api-Key
      type: apiKey
      in: header

````