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

# Get ticker



## OpenAPI

````yaml openapi/api-gateway.json GET /ticker
openapi: 3.1.0
info:
  title: ax-api-gateway
  description: ''
  license:
    name: ''
  version: 15.22.0
servers:
  - url: https://gateway.architect.exchange/api
security: []
tags:
  - name: api-gateway
    description: API gateway
paths:
  /ticker:
    get:
      tags:
        - api-gateway
      operationId: get_ticker
      parameters:
        - name: symbol
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ticker details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTickerResponse'
        '404':
          description: No ticker available for the symbol
      security:
        - session_token: []
components:
  schemas:
    GetTickerResponse:
      type: object
      required:
        - ticker
      properties:
        ticker:
          $ref: '#/components/schemas/Ticker'
    Ticker:
      allOf:
        - $ref: '#/components/schemas/Timestamp'
        - type: object
          required:
            - s
            - q
            - v
            - oi
            - m
          properties:
            ap:
              type:
                - string
                - 'null'
            bp:
              type:
                - string
                - 'null'
            ef:
              oneOf:
                - type: 'null'
                - $ref: '#/components/schemas/GetEstimatedFundingRateResponse'
                  description: Live estimated funding rate, when available for this symbol.
            h:
              type:
                - string
                - 'null'
              description: Session high price in USD
            i:
              $ref: '#/components/schemas/InstrumentState'
              description: Instrument state
            l:
              type:
                - string
                - 'null'
              description: Session low price in USD
            lsp:
              type:
                - string
                - 'null'
              description: Last settlement price in USD
            lst:
              type:
                - integer
                - 'null'
              format: int32
              description: Last settlement time as epoch seconds
            m:
              type: string
            o:
              type:
                - string
                - 'null'
              description: Session open price in USD
            oi:
              type: integer
              format: int64
              description: Open interest in contracts
              minimum: 0
            p:
              type:
                - string
                - 'null'
              description: Last trade price in USD
            pl:
              type:
                - string
                - 'null'
              description: >-
                Price band lower limit in USD: the absolute lower bound of the
                price band that orders are checked against
            pu:
              type:
                - string
                - 'null'
              description: >-
                Price band upper limit in USD: the absolute upper bound of the
                price band that orders are checked against
            q:
              type: integer
              format: int64
              description: Last trade quantity in contracts
              minimum: 0
            s:
              type: string
              description: Instrument symbol; e.g. XAU-PERP, EURUSD-PERP
            v:
              type: integer
              format: int64
              description: >-
                Total 24h volume in contracts (quantity traded, not notional
                value)
              minimum: 0
      description: Low frequency (e.g. ~1s or ~5s) stats update for a symbol.
    Timestamp:
      type: object
      required:
        - ts
        - tn
      properties:
        tn:
          type: integer
          format: int32
          minimum: 0
        ts:
          type: integer
          format: int32
    GetEstimatedFundingRateResponse:
      type: object
      description: >-
        Live estimated funding rate for a symbol, served verbatim from the
        cached

        estimate the settlement runner publishes.
      required:
        - symbol
        - status
        - timestamp
      properties:
        benchmark_price:
          type:
            - string
            - 'null'
        funding_amount:
          type:
            - string
            - 'null'
        funding_rate:
          type:
            - string
            - 'null'
        reason:
          type:
            - string
            - 'null'
        settlement_price:
          type:
            - string
            - 'null'
        status:
          $ref: '#/components/schemas/EstimatedFundingRateStatus'
        symbol:
          type: string
        timestamp:
          type: string
          format: date-time
    InstrumentState:
      type: string
      enum:
        - CLOSED_FROZEN
        - PRE_OPEN
        - OPEN
        - CLOSED
        - DELISTED
        - HALTED
        - MATCH_AND_CLOSE_AUCTION
        - UNKNOWN
    EstimatedFundingRateStatus:
      type: string
      enum:
        - ready
        - settlement_pending
        - unavailable
  securitySchemes:
    session_token:
      type: http
      scheme: bearer
      description: User session token

````