> ## 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.

# Token Info

> Read the name, symbol, image, and total supply of your token

<span style={{display:"none"}}>For the complete documentation index, see [llms.txt](/llms.txt).</span>

Returns the basic metadata of your loyalty token. Useful for rendering the token's branding inside your app.

### Response

<ResponseField name="name" type="string">
  Token name as configured at launch
</ResponseField>

<ResponseField name="symbol" type="string">
  Token symbol (3-5 letter ticker)
</ResponseField>

<ResponseField name="image" type="string | null">
  Direct URL to the token's image, or `null` if no image was set
</ResponseField>

<ResponseField name="total_supply" type="string">
  Total token supply as a plain decimal string
</ResponseField>

```javascript theme={null}
const res = await fetch("https://tokens.shakesco.com/token-info", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const info = await res.json();
```

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "name": "Launchpad Token",
    "symbol": "SLP",
    "image": "https://purple-selective-warbler-371.mypinata.cloud/ipfs/Qm...",
    "total_supply": "20999900.0"
  }
  ```
</ResponseExample>
