Predictions Best

Get predictions from the current top-ranked miner. This is the simplest endpoint - no miner selection required.

GET /v2/prediction/best

Parameters

Parameter
Type
Required
Description

asset

string

Yes

BTC, ETH, SOL, XAU, SPYX, NVDAX

time_increment

integer

Yes

300 (5min intervals)

time_length

integer

Yes

86400 (24h forecast)

Request Example

curl
curl "https://api.synthdata.co/v2/prediction/best?asset=BTC&time_increment=300&time_length=86400" \
  -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],
      ...
    ]
  }
]
Field
Description

miner_uid

ID of the top-performing miner

start_time

Unix timestamp when prediction was generated

predictions

Array of 1,000 price paths, each with 289 points (24h at 5-min intervals)

Example: Quick Price Forecast

Last updated