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

# Adjpuellmultiple

> Get time-series data for the Adjpuellmultiple mining metric. Returns historical values for the specified cryptocurrency asset.



## OpenAPI

````yaml /api-reference/openapi.json get /{asset}/mining/Adjpuellmultiple
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}/mining/Adjpuellmultiple:
    get:
      tags:
        - Mining
      summary: Adjpuellmultiple
      description: >-
        Get time-series data for the Adjpuellmultiple mining metric. Returns
        historical values for the specified cryptocurrency asset.
      parameters:
        - name: asset
          in: path
          required: true
          schema:
            type:
              - string
              - 'null'
            enum:
              - 1inch
              - ada
              - algo
              - ant
              - bch
              - btc
              - busd
              - comp
              - crv
              - crvusd
              - cvc
              - dai
              - dash
              - dgb
              - doge
              - dot
              - elf
              - etc
              - eth
              - eurc
              - fdusd
              - flow_native
              - frax
              - ftt
              - gas
              - gusd
              - hbtc
              - hedg
              - ht
              - husd
              - icp
              - ldo
              - leo_eos
              - leo_eth
              - lpt
              - ltc
              - lusd
              - maid
              - mkr
              - neo
              - nxm
              - paxg
              - pol_eth
              - pyusd
              - qnt
              - sdai
              - snt
              - snx
              - susde
              - sushi
              - tusd
              - tusd_trx
              - uma
              - usdc
              - usdc_avaxc
              - usdc_trx
              - usdd
              - usde
              - usdk
              - usdm
              - usdt
              - wbtc
              - weth
              - xaut
              - xlm
              - xmr
              - xvg
              - yfi
              - zec
              - zrx
          description: >-
            Asset identifier, lowercase ticker. The list is the assets that
            carry this metric — an asset outside it has no data here.
          example: btc
        - description: >-
            Start date for filtering results (inclusive). Format: ISO 8601
            date-time.
          name: startDate
          in: query
          schema:
            format: date-time
            type: string
            nullable: true
          required: false
        - description: >-
            End date for filtering results (inclusive). Format: ISO 8601
            date-time.
          name: endDate
          in: query
          schema:
            format: date-time
            type: string
            nullable: true
          required: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    time:
                      type: string
                      format: date-time
                    adjpuellmultiple:
                      type:
                        - number
                        - 'null'
                      format: double
                  additionalProperties: false
components:
  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.

````