Skip to main content
GET
/
strategies
/
{strategyId}
/
available-dates
List the dates that have a completed run for the resolved version
curl --request GET \
  --url https://api.noonum.ai/v2/strategies/{strategyId}/available-dates \
  --header 'Authorization: Bearer <token>'
{
  "available_dates": [
    "2023-12-25"
  ]
}

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and then your JWT or API Key. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... or Bearer YOUR_API_KEY_HERE

Path Parameters

strategyId
string<uuid>
required

UUID of the strategy

Query Parameters

versionId
string<uuid>

Explicit version to read. Omitted -> the strategy's active version.

Response

Ascending list of as_of_date values (ISO-8601) with a completed (DONE) run for the version. Empty when none / no active version.

available_dates
string<date>[]
required