tracks

Gets the most shared tracks for a given time range

get/tracks/most-shared

Query parameters

user_idstring

The user ID of the user making the request

limitinteger

Number of tracks to fetch

offsetinteger

The number of items to skip. Useful for pagination (page number * limit)

time_range'week' | 'month' | 'allTime'

The time range to consider

Response

Success

latest_chain_blockinteger required
latest_indexed_blockinteger required
latest_chain_slot_playsinteger required
latest_indexed_slot_playsinteger required
signaturestring required
timestampstring required

Example response

{
  "data": [
    {
      "stream_conditions": {
        "usdc_purchase": {
          "splits": [
            {
              "user_id": 1234
            }
          ]
        }
      },
      "download_conditions": {
        "usdc_purchase": {
          "splits": [
            {
              "user_id": 1234
            }
          ]
        }
      }
    }
  ]
}

Changes