Skip to main content
GET
/
api
/
programs
/
backtest
/
history
cURL
curl --request GET \
  --url https://api.production.hyperoru.com/api/programs/backtest/history \
  --header 'Authorization: Bearer <token>'
{
  "backtests": [
    {
      "id": 123,
      "status": "<string>",
      "account_id": 123,
      "finished_at": "<string>",
      "program_id": 123,
      "started_at": "<string>",
      "total_pnl": 123,
      "total_trades": 123,
      "win_rate": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.

Response

Historical backtests

Backtest list.

backtests
object[]
required