Predictions Historical

Get predictions from a specific past date.

GET /v2/prediction/historical

Parameters

Parameter
Type
Required
Description

miner

array[int]

Yes

Miner UIDs to fetch (use repeated params: miner=2&miner=82)

asset

string

Yes

BTC, ETH, SOL, XAU, SPYX, NVDAX

start_time

string

Yes

ISO 8601 datetime (e.g., 2025-01-15T00:00:00Z)

time_increment

integer

Yes

300 (5min intervals)

time_length

integer

Yes

86400 (24h forecast)

Request Example

curl "https://api.synthdata.co/v2/prediction/historical?miner=2&asset=BTC&start_time=2025-01-15T00:00:00Z&time_increment=300&time_length=86400" \
  -H "Authorization: Apikey YOUR_API_KEY"

Response (example)

response.json
[
  {
    "miner_uid": 2,
    "start_time": 1736899200,
    "predictions": [
      [97234.56, 97456.78, 97389.12, ..., 98123.45],
      [97234.56, 97567.89, 97612.34, ..., 96789.01],
      ...
    ]
  }
]
Field
Description

miner_uid

Miner identifier

start_time

Unix timestamp of the prediction

predictions

Array of 1,000 price paths

Use Cases

  • Backtesting trading strategies

  • Analyzing miner prediction accuracy

  • Historical volatility analysis

Last updated