Predictions Latest
Get the most recent predictions from specific miners.
GET /v2/prediction/latestParameters
Parameter
Type
Required
Description
Request Example
# First, get top miner UIDs from leaderboard
curl "https://api.synthdata.co/v2/leaderboard/latest?asset=BTC&days=14&limit=5" \
-H "Authorization: Apikey YOUR_API_KEY"# Then fetch predictions for those miners
curl "https://api.synthdata.co/v2/prediction/latest?asset=BTC&time_increment=300&time_length=86400&miner=2&miner=82" \
-H "Authorization: Apikey YOUR_API_KEY"Response
[
{
"miner_uid": 2,
"start_time": 1769097780,
"predictions": [
[88975.00, 89012.45, 88934.21, ..., 87633.98],
[88975.00, 89102.33, 89245.67, ..., 90256.12],
...
]
},
{
"miner_uid": 82,
"start_time": 1769097780,
"predictions": [...]
}
]Field
Description
Example: Aggregate and Compute Statistics
Last updated