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

# Top Assets Summary

> Curated summary of top gainers, top losers, newly listed, and most traded assets.

Returns four short lists intended for a market overview screen. Each
list contains up to six assets by default; use ``count`` to change the
per-list size.



## OpenAPI

````yaml /openapi.json get /api/public/broker/ticker/top-assets-summary/
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/top-assets-summary/:
    get:
      tags:
        - Public
      summary: Top Assets Summary
      description: >-
        Curated summary of top gainers, top losers, newly listed, and most
        traded assets.


        Returns four short lists intended for a market overview screen. Each

        list contains up to six assets by default; use ``count`` to change the

        per-list size.
      operationId: public_broker_ticker_top_assets_summary_list
      parameters:
        - in: query
          name: count
          schema:
            type: integer
          description: 'Number of assets per category (default: 6)'
        - 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/PaginatedTopAssetsResponseList'
          description: ''
      security: []
components:
  schemas:
    PaginatedTopAssetsResponseList:
      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/TopAssetsResponse'
    TopAssetsResponse:
      type: object
      properties:
        topGainers:
          type: array
          items:
            $ref: '#/components/schemas/TopAssetEntry'
        newlyListed:
          type: array
          items:
            $ref: '#/components/schemas/TopAssetNewlyListedEntry'
        topTraded:
          type: array
          items:
            $ref: '#/components/schemas/TopAssetTradedEntry'
        topLosers:
          type: array
          items:
            $ref: '#/components/schemas/TopAssetLosersEntry'
      required:
        - newlyListed
        - topGainers
        - topLosers
        - topTraded
    TopAssetEntry:
      type: object
      properties:
        symbol:
          type: string
        name:
          type: string
        buy:
          type: string
        sell:
          type: string
        gain:
          type: string
          nullable: true
        market_cap:
          type: integer
          nullable: true
        in_discovery_zone:
          type: boolean
      required:
        - buy
        - gain
        - in_discovery_zone
        - market_cap
        - name
        - sell
        - symbol
    TopAssetNewlyListedEntry:
      type: object
      properties:
        symbol:
          type: string
        name:
          type: string
        buy:
          type: string
        sell:
          type: string
        gain:
          type: string
          nullable: true
        market_cap:
          type: integer
          nullable: true
        in_discovery_zone:
          type: boolean
      required:
        - buy
        - gain
        - in_discovery_zone
        - market_cap
        - name
        - sell
        - symbol
    TopAssetTradedEntry:
      type: object
      properties:
        symbol:
          type: string
        name:
          type: string
        buy:
          type: string
        sell:
          type: string
        gain:
          type: string
          nullable: true
        market_cap:
          type: integer
          nullable: true
        in_discovery_zone:
          type: boolean
      required:
        - buy
        - gain
        - in_discovery_zone
        - market_cap
        - name
        - sell
        - symbol
    TopAssetLosersEntry:
      type: object
      properties:
        symbol:
          type: string
        name:
          type: string
        buy:
          type: string
        sell:
          type: string
        gain:
          type: string
          nullable: true
        market_cap:
          type: integer
          nullable: true
        in_discovery_zone:
          type: boolean
      required:
        - buy
        - gain
        - in_discovery_zone
        - market_cap
        - name
        - sell
        - symbol

````