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.

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

Example response

{
  "name": "Strategy",
  "id": "strategy",
  "type": "company",
  "symbol": "MSTR.US",
  "country": "US",
  "website_url": "https://www.strategy.com/",
  "twitter_screen_name": "Strategy",
  "holdings": [
    {
      "coin_id": "bitcoin",
      "amount": 638985,
      "percentage_of_total_supply": 3.043
    }
  ]
}

Changes