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

# Voting Ratio

> Read the configured tokens-per-vote ratio

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

Returns the currently configured ratio. Returns `"0.0"` if voting has not been configured.

### Response

<ResponseField name="tokens_per_vote" type="string">
  Tokens that equal one vote
</ResponseField>

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

<ResponseExample>
  ```json 200 OK theme={null}
  { "tokens_per_vote": "10.0" }
  ```
</ResponseExample>
