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

# realized_profit

> Retrieve market data metrics for `/{asset}/market/realized_profit`. Returns price, volume, and market indicators.



## OpenAPI

````yaml /api-reference/openapi.json get /{asset}/market/realized_profit
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:
  /{asset}/market/realized_profit:
    get:
      tags:
        - Market
      summary: realized_profit
      description: >-
        Retrieve market data metrics for `/{asset}/market/realized_profit`.
        Returns price, volume, and market indicators.
      parameters:
        - name: asset
          in: path
          required: true
          schema:
            type:
              - string
              - 'null'
            enum:
              - btc
          description: >-
            Asset identifier, lowercase ticker. The list is the assets that
            carry this metric — an asset outside it has no data here.
          example: btc
        - name: startDate
          in: query
          schema:
            type:
              - string
              - 'null'
            format: date-time
          description: >-
            Start date for filtering results (inclusive). Format: ISO 8601
            date-time.
        - name: endDate
          in: query
          schema:
            type:
              - string
              - 'null'
            format: date-time
          description: >-
            End date for filtering results (inclusive). Format: ISO 8601
            date-time.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RealizedProfitResponse'
components:
  schemas:
    RealizedProfitResponse:
      type: object
      properties:
        time:
          type: string
          format: date-time
        realized_profit:
          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.

````