Skip to main content
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:
HeaderDescription
KeyYour public API key
TimestampCurrent Unix timestamp
HMACSHA-512 signature of the request

Parameters

This endpoint takes no parameters.

Response

ranking
string
required
Your current leaderboard ranking as returned by the API.

Example

curl --request GET \
  --url https://api.futuur.com/me/ranking/ \
  --header 'Key: YOUR_PUBLIC_KEY' \
  --header 'Timestamp: 1712345678' \
  --header 'HMAC: YOUR_HMAC_SIGNATURE'
{
  "ranking": "127"
}