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

# Get Ticker

> Current buy and sell prices for every tradeable asset.

The returned price is indicative — the final executed price may differ
based on the order amount and market conditions. For a binding price,
request a quote via the swap estimate endpoint before submitting an order.



## OpenAPI

````yaml /openapi.json get /api/public/broker/ticker/
openapi: 3.0.3
info:
  title: Digital Surge API
  version: '2.0'
  description: >-
    Digital Surge is an Australian cryptocurrency exchange. This API provides
    programmatic access to your account: live AUD pricing for hundreds of
    assets, instant swaps, recurring buys, price triggers, portfolio balances,
    transaction history, and crypto withdrawals.


    **Authentication** — create an API key in the Digital Surge app under
    *Account Settings → API Keys* and send it with every request:
    `Authorization: Bearer <your-api-key>`. Read-only and read & write keys are
    available.


    **Guides and interactive documentation** — https://digitalsurge.com.au/docs


    **AI agents** — connect via the Digital Surge MCP server:
    https://mcp.digitalsurge.com.au/mcp
servers:
  - url: https://app.digitalsurge.com.au
    description: Production
security: []
tags:
  - name: Public
    description: Unauthenticated endpoints — market data, asset info, pricing
  - name: Private
    description: Authenticated endpoints — trading, portfolio, account management
paths:
  /api/public/broker/ticker/:
    get:
      tags:
        - Public
      summary: Get Ticker
      description: >-
        Current buy and sell prices for every tradeable asset.


        The returned price is indicative — the final executed price may differ

        based on the order amount and market conditions. For a binding price,

        request a quote via the swap estimate endpoint before submitting an
        order.
      operationId: public_broker_ticker_list
      parameters:
        - in: query
          name: asset
          schema:
            type: string
          description: Comma-separated asset codes to filter by
        - in: query
          name: limit
          schema:
            type: integer
          description: Max number of assets to return
        - in: query
          name: order
          schema:
            type: string
          description: 'Ordering: "gain" for top gainers first'
        - name: page
          required: false
          in: query
          description: A page number within the paginated result set.
          schema:
            type: integer
        - name: page_size
          required: false
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedTickerResponseList'
          description: ''
      security: []
components:
  schemas:
    PaginatedTickerResponseList:
      type: object
      required:
        - count
        - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=4
        previous:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=2
        results:
          type: array
          items:
            $ref: '#/components/schemas/TickerResponse'
    TickerResponse:
      type: object
      properties:
        BTC:
          $ref: '#/components/schemas/TickerEntry'
      required:
        - BTC
    TickerEntry:
      type: object
      properties:
        buy:
          type: string
          format: decimal
          nullable: true
        sell:
          type: string
          format: decimal
          nullable: true
        last:
          type: string
          format: decimal
          nullable: true
        24h_ago:
          type: string
          format: decimal
          nullable: true
        name:
          type: string
        tradeable:
          type: boolean
      required:
        - 24h_ago
        - buy
        - last
        - name
        - sell
        - tradeable

````