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

# Tickers

> Returns a 24 hour window statistics for all pairs.

---

**Authorization**

- No API key required — this endpoint is public.



## OpenAPI

````yaml get /trade/public/tickers
openapi: 3.0.0
info:
  title: Ripio Gateway
  description: Ripio API - Services documentation.
  version: 0.1.0
  x-logo:
    url: https://cwstatic.nyc3.digitaloceanspaces.com/1996/bitcointrade.png
servers:
  - url: https://api.ripio.com
    description: Production environment
security: []
paths:
  /trade/public/tickers:
    get:
      tags:
        - Ripio Trade
      summary: Public - Tickers
      description: |-
        Returns a 24 hour window statistics for all pairs.

        ---

        **Authorization**

        - No API key required — this endpoint is public.
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Ok
                properties:
                  data:
                    items:
                      properties:
                        pair:
                          description: Currency pair code
                          type: string
                          example: BTC_BRL
                        price_change_percent_24h:
                          description: 24-hr % price change of market pair
                          type: string
                        high:
                          description: Highest price in the last 24 hours
                          type: number
                        low:
                          description: Lowest price in the last 24 hours
                          type: number
                        volume:
                          description: Volume in the last 24 hours
                          type: number
                        trades_quantity:
                          description: Trades quantity in the last 24 hours
                          type: number
                        last:
                          description: Price of the last trade
                          type: number
                        bid:
                          description: Price of the current best buy order in the orderbook
                          type: number
                        ask:
                          description: >-
                            Price of the current best sell order in the
                            orderbook
                          type: number
                        date:
                          description: Timestamp of the last update (UTC)
                          type: string
                        first:
                          description: Price of the first trade in the last 24 hours window
                          type: number
                        is_frozen:
                          description: Whether the market is currently frozen (disabled)
                          type: boolean
                        base_code:
                          description: Base currency code
                          type: string
                        base_id:
                          description: Base currency ID
                          type: string
                        quote_id:
                          description: Quote currency ID
                          type: string
                        quote_code:
                          description: Quote currency code
                          type: string
                        quote_volume:
                          description: Quote currency volume
                          type: number
                      required:
                        - pair
                        - price_change_percent_24h
                        - high
                        - low
                        - volume
                        - trades_quantity
                        - last
                        - bid
                        - ask
                        - date
                        - first
                        - is_frozen
                        - base_code
                        - base_id
                        - quote_id
                        - quote_code
                        - quote_volume
                      type: object
                    type: array
                    example:
                      - ask: 250000.15
                        base_code: BTC
                        base_id: 9A5E2EF4-9547-418A-8EC6-C6EADBB8B32F
                        bid: 240000.15
                        date: '2017-10-20T00:00:00.000Z'
                        first: 245000.15
                        high: 250000.15
                        is_frozen: false
                        last: 245000.15
                        low: 200000.15
                        pair: BTC_BRL
                        price_change_percent_24h: '-12'
                        quote_code: BRL
                        quote_id: 48898138-8623-4555-9468-B1A1505A9352
                        quote_volume: 150.1
                        trades_quantity: 123
                        volume: 123.12345678
                      - ask: 15600.12
                        base_code: ETH
                        base_id: 13A4B83B-E74F-425C-BC0A-03A9C0F29FAD
                        bid: 15400.12
                        date: '2017-10-20T00:00:00.000Z'
                        first: 15999.15
                        high: 15999.12
                        is_frozen: false
                        last: 15500.12
                        low: 15000.12
                        pair: ETH_BRL
                        price_change_percent_24h: '-12'
                        quote_id: 48898138-8623-4555-9468-B1A1505A9352
                        quote_code: BRL
                        quote_volume: 180.1
                        trades_quantity: 123
                        volume: 123.12345678
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````