> ## 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.

# Ticker By Pair

> Returns a 24 hour window statistics for a given pair.

---

**Authorization**

- Requires a valid API key.
- Required API-key permission(s):
  - General Data (Read)



## OpenAPI

````yaml get /trade/ticker/{pair}
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/ticker/{pair}:
    get:
      tags:
        - Ripio Trade
      summary: Ticker - Ticker By Pair
      description: |-
        Returns a 24 hour window statistics for a given pair.

        ---

        **Authorization**

        - Requires a valid API key.
        - Required API-key permission(s):
          - General Data (Read)
      parameters:
        - in: path
          name: pair
          required: true
          description: This property was not properly documented
          schema:
            type: string
        - in: header
          name: authorization
          required: true
          description: The API key as a string.
          schema:
            type: string
        - in: header
          name: signature
          required: true
          description: >-
            See the [Generating
            Signature](/static/api/authentication#generating-signature) section
            for more details.
          schema:
            type: string
        - in: header
          name: timestamp
          required: true
          description: >-
            A timestamp in milliseconds. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
        - in: header
          name: timstamp-tolerance
          required: false
          description: >-
            An additional, non-required parameter, that you can send to specify
            the number of milliseconds after the timestamp for the request to be
            valid. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Ok
                properties:
                  data:
                    properties:
                      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: Number of trades in the last 24 hours
                        type: number
                      last:
                        description: Price of the most recent trade
                        type: number
                      bid:
                        description: >-
                          Best bid price (highest price a buyer is willing to
                          pay)
                        type: number
                      ask:
                        description: >-
                          Best ask price (lowest price a seller is willing to
                          accept)
                        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
                      price_change_percent_24h:
                        description: 24-hr % price change of market pair
                        type: string
                    required:
                      - high
                      - low
                      - volume
                      - trades_quantity
                      - last
                      - bid
                      - ask
                      - date
                      - first
                      - is_frozen
                      - base_code
                      - base_id
                      - quote_id
                      - quote_code
                      - quote_volume
                      - price_change_percent_24h
                    type: object
                    example:
                      ask: 95629
                      base_code: BTC
                      base_id: 9A5E2EF4-9547-418A-8EC6-C6EADBB8B32F
                      bid: 94171
                      date: '2022-11-11T01:31:35.820Z'
                      first: 98444
                      high: 98444
                      is_frozen: false
                      last: 94311
                      low: 85034
                      pair: BTC_BRL
                      price_change_percent_24h: '-12'
                      quote_id: 48898138-8623-4555-9468-B1A1505A9352
                      quote_code: BRL
                      quote_volume: 150.1
                      trades_quantity: 1199
                      volume: 27.26776846
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````