Skip to main content
GET
/
token-info
Token Info
curl --request GET \
  --url https://tokens.shakesco.com/token-info \
  --header 'Authorization: Bearer <token>'
{
  "name": "Launchpad Token",
  "symbol": "SLP",
  "image": "https://purple-selective-warbler-371.mypinata.cloud/ipfs/Qm...",
  "total_supply": "20999900.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 basic metadata of your loyalty token. Useful for rendering the token’s branding inside your app.

Response

name
string
Token name as configured at launch
symbol
string
Token symbol (3-5 letter ticker)
image
string | null
Direct URL to the token’s image, or null if no image was set
total_supply
string
Total token supply as a plain decimal string
const res = await fetch("https://tokens.shakesco.com/token-info", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const info = await res.json();
{
  "name": "Launchpad Token",
  "symbol": "SLP",
  "image": "https://purple-selective-warbler-371.mypinata.cloud/ipfs/Qm...",
  "total_supply": "20999900.0"
}