Skip to main content
GET
/
total-staked
Total Staked
curl --request GET \
  --url https://tokens.shakesco.com/total-staked \
  --header 'Authorization: Bearer <token>'
{ "total_staked": "200.0" }

Documentation Index

Fetch the complete documentation index at: https://docs.shakesco.com/llms.txt

Use this file to discover all available pages before exploring further.

For the complete documentation index, see llms.txt. Returns the sum of principal across every stake the customer currently has locked. Excludes any stakes that have already been unstaked.

Query Parameters

customer_ref
string
required
Your unique identifier for this customer

Response

total_staked
string
Sum of all active stake principals
const res = await fetch(
  "https://tokens.shakesco.com/total-staked?customer_ref=customer-123",
  { headers: { Authorization: `Bearer ${API_KEY}` } }
);
const { total_staked } = await res.json();
{ "total_staked": "200.0" }