> ## Documentation Index
> Fetch the complete documentation index at: https://docs.futuur.com/llms.txt
> Use this file to discover all available pages before exploring further.

# My ranking

> Get your current leaderboard ranking.

Returns your current position on the Futuur leaderboard. Use this endpoint to track your standing relative to other traders.

## Endpoint

```
GET https://api.futuur.com/me/ranking/
```

## Authentication

This endpoint requires HMAC-SHA512 authentication. Include the following headers with every request:

| Header      | Description                      |
| ----------- | -------------------------------- |
| `Key`       | Your public API key              |
| `Timestamp` | Current Unix timestamp           |
| `HMAC`      | SHA-512 signature of the request |

## Parameters

This endpoint takes no parameters.

## Response

<ResponseField name="ranking" type="string" required>
  Your current leaderboard ranking as returned by the API.
</ResponseField>

## Example

```bash theme={null}
curl --request GET \
  --url https://api.futuur.com/me/ranking/ \
  --header 'Key: YOUR_PUBLIC_KEY' \
  --header 'Timestamp: 1712345678' \
  --header 'HMAC: YOUR_HMAC_SIGNATURE'
```

```json theme={null}
{
  "ranking": "127"
}
```
