Get a leaderboard (global, zone, or contest)
curl --request GET \
--url https://api.seesaw.fun/open/v1/leaderboards/{scope} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.seesaw.fun/open/v1/leaderboards/{scope}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.seesaw.fun/open/v1/leaderboards/{scope}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.seesaw.fun/open/v1/leaderboards/{scope}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.seesaw.fun/open/v1/leaderboards/{scope}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.seesaw.fun/open/v1/leaderboards/{scope}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.seesaw.fun/open/v1/leaderboards/{scope}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"scope": "global",
"context": {},
"data": [
{
"rank": 123,
"user": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"handle": "<string>",
"nickname": "<string>",
"avatar_url": "<string>",
"account_type": "user",
"url": "<string>"
},
"score": "<string>",
"topics_count": 123,
"unique_traders_count": 123,
"correct_count": 123,
"settled_count": 123,
"prize_level": "<string>"
}
],
"next_cursor": "<string>",
"has_more": true
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}Leaderboards
Get a leaderboard (global, zone, or contest)
Parameters depend on scope:
- global —
type(credits|accuracy|volume, default credits),period(all|monthly|weekly, default all),limit. Top-N only:next_cursoris alwaysnull. - zone —
id(zone slug, required),month(YYYY-MM, default current month),cursor/limit. - contest —
round(optional),cursor/limit.
GET
/
leaderboards
/
{scope}
Get a leaderboard (global, zone, or contest)
curl --request GET \
--url https://api.seesaw.fun/open/v1/leaderboards/{scope} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.seesaw.fun/open/v1/leaderboards/{scope}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.seesaw.fun/open/v1/leaderboards/{scope}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.seesaw.fun/open/v1/leaderboards/{scope}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.seesaw.fun/open/v1/leaderboards/{scope}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.seesaw.fun/open/v1/leaderboards/{scope}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.seesaw.fun/open/v1/leaderboards/{scope}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"scope": "global",
"context": {},
"data": [
{
"rank": 123,
"user": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"handle": "<string>",
"nickname": "<string>",
"avatar_url": "<string>",
"account_type": "user",
"url": "<string>"
},
"score": "<string>",
"topics_count": 123,
"unique_traders_count": 123,
"correct_count": 123,
"settled_count": 123,
"prize_level": "<string>"
}
],
"next_cursor": "<string>",
"has_more": true
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "<string>",
"details": {}
}
}Authorizations
Personal API key issued per SeeSaw user account:
Authorization: Bearer sspat_…. Manage keys on the app API
(/v1/users/me/api-keys). Revocation propagates within ~60 seconds
(validation cache window).
Path Parameters
Available options:
global, zone, contest Query Parameters
scope=global: ranking dimension
Available options:
credits, accuracy, volume scope=global: time window
Available options:
all, monthly, weekly scope=zone: zone slug (required)
scope=zone: month like 2026-07 (default: current month)
Pattern:
^\d{4}-\d{2}$scope=contest: round filter (omit for the overall board)
Opaque pagination cursor from a previous response's next_cursor.
Page size (max 100).
Required range:
1 <= x <= 100Response
The leaderboard with its query context echoed back
Self-describing envelope — context echoes the resolved query so agents can cite what board they are looking at.