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

# summary/assets

> Retrieve summary data for /summary/assets. Returns relevant metrics and indicators.



## OpenAPI

````yaml /api-reference/openapi.json get /summary/assets
openapi: 3.1.1
info:
  title: Alphractal API
  version: 0.3.0
  description: >-
    Alphractal API provides comprehensive cryptocurrency on-chain data including
    mining metrics, address analytics, block information, fee data, market
    indicators, supply metrics, exchange flows, and more.
servers:
  - url: https://api.alphractal.com
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /summary/assets:
    get:
      tags:
        - Summary
      summary: summary/assets
      description: >-
        Retrieve summary data for /summary/assets. Returns relevant metrics and
        indicators.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SummaryAssetInfoResponse'
components:
  schemas:
    SummaryAssetInfoResponse:
      type: object
      properties:
        asset_id:
          type:
            - string
            - 'null'
        name:
          type:
            - string
            - 'null'
        url_image:
          type:
            - string
            - 'null'
        current_price:
          type: number
          format: double
        percent_change_24h:
          type: number
          format: double
        market_cap:
          type: number
          format: double
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: >-
        API Key authentication. Include your API key in the X-Api-Key header for
        all requests.

````