Public Treasury

Crypto Treasury Holdings by Entity ID

This endpoint allows you query public companies & governments' cryptocurrency holdings by Entity ID

get/public_treasury/{entity_id}

Path parameters

entity_idstring required
Example:strategy

public company or government entity ID *refers to /entities/list.

Query parameters

holding_amount_changestring

include holding amount change for specified timeframes, comma-separated if querying more than 1 timeframe Valid values: 7d, 14d, 30d, 90d, 1y, ytd

holding_change_percentagestring

include holding change percentage for specified timeframes, comma-separated if querying more than 1 timeframe Valid values: 7d, 14d, 30d, 90d, 1y, ytd

Response

Get public companies & governments crypto treasury holding data

namestring

entity name

idstring

entity ID

typestring

entity type: company or government

symbolstring

stock market symbol for public company

countrystring

country code of company or government location

website_urlstring

official website URL of the entity

twitter_screen_namestring

official Twitter handle of the entity

total_treasury_value_usdnumber

total current value of all holdings in USD

unrealized_pnlnumber

unrealized profit and loss (current value - total entry value)

m_navnumber

market to net asset value ratio

total_asset_value_per_share_usdnumber

total asset value per share in USD

Example response

{
  "name": "Strategy",
  "id": "strategy",
  "type": "company",
  "symbol": "MSTR.US",
  "country": "US",
  "website_url": "https://www.strategy.com/",
  "twitter_screen_name": "Strategy",
  "total_treasury_value_usd": 48119580010.663155,
  "unrealized_pnl": -6554973853.336845,
  "m_nav": 0.99,
  "total_asset_value_per_share_usd": 150.46302495438903,
  "holdings": [
    {
      "coin_id": "bitcoin",
      "amount": 714644,
      "percentage_of_total_supply": 3.403,
      "amount_per_share": 0.0022345892873893874,
      "entity_value_usd_percentage": 100,
      "current_value_usd": 48119580010.663155,
      "total_entry_value_usd": 54674553864,
      "average_entry_value_usd": 76506,
      "unrealized_pnl": -6554973853.336845,
      "holding_amount_change": {
        "7d": 1142,
        "14d": 1997,
        "30d": 27234,
        "90d": 72952,
        "1y": 235904,
        "ytd": 42144
      },
      "holding_change_percentage": {
        "7d": 0.16,
        "14d": 0.28,
        "30d": 3.962,
        "90d": 11.369,
        "1y": 49.276,
        "ytd": 6.267
      }
    }
  ]
}

Changes