Predictions

Full prediction paths for advanced use cases. Requires Enterprise plan.

Prediction Best

Returns full prediction paths from the top-ranked miner.

GET /v2/prediction/best

Parameters

Parameter
Type
Required
Default
Description

asset

string

Yes

Asset symbol: BTC, ETH, SOL, XAU, SPYX, NVDAX, TSLAX, AAPLX, GOOGLX

time_increment

integer

No

300

Time step in seconds (300 = 5 minutes)

time_length

integer

No

86400

Forecast horizon in seconds (86400 = 24 hours)

Example Request

curl
curl "https://api.synthdata.co/v2/prediction/best?asset=BTC&time_increment=300&time_length=86400" \
  -H "Authorization: Apikey YOUR_API_KEY"

Response

response.json
[
  {
    "miner_uid": 2,
    "start_time": 1769177040,
    "predictions": [
      [89209, 89280.29, 89311.84, 89337.37, ...],
      [89209, 89195.42, 89178.33, 89201.56, ...],
      ...
    ]
  }
]

Prediction Latest

Returns full prediction paths from specific miners.

Parameters

Parameter
Type
Required
Default
Description

asset

string

Yes

Asset symbol

miner_uid

integer

No

Specific miner UID

time_increment

integer

No

300

Time step in seconds

time_length

integer

No

86400

Forecast horizon in seconds


Prediction Historical

Returns historical predictions for backtesting.

Parameters

Parameter
Type
Required
Default
Description

asset

string

Yes

Asset symbol

start_time

integer

Yes

Unix timestamp for start

end_time

integer

Yes

Unix timestamp for end


Last updated