REST API
Enter your token in the format of "Basic your-token"
OK
Identifier for a FAST taxonomy. Stable for the lifetime of a deployment.
1Unauthorized
Internal Server Error
GET /v1/taxonomy HTTP/1.1
Host: fast.jp.stork-oracle.network
Authorization: YOUR_API_KEY
Accept: */*
{
"taxonomy_id": 1,
"assets": [
{
"name": "BTCUSD",
"asset_id": 0
},
{
"name": "ETHUSD",
"asset_id": 1
},
{
"name": "SOLUSD",
"asset_id": 2
}
]
}Enter your token in the format of "Basic your-token"
Comma-separated list of FAST asset ids to fetch (e.g. 1,2,3).
1,2Wire format for the response payload.
unsignedPossible values: OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
GET /v1/prices/latest?assets=text HTTP/1.1
Host: fast.jp.stork-oracle.network
Authorization: YOUR_API_KEY
Accept: */*
{
"type": "unsigned",
"tax": 1,
"ts": 1717331200000000000,
"a": [
{
"id": 1,
"v": "100000000000000000000"
},
{
"id": 2,
"v": "3500000000000000000000"
}
]
}Enter your token in the format of "Basic your-token"
Compact numeric asset id used inside FAST messages.
42OK
Compact numeric asset id used inside FAST messages.
42Request timestamp in nanoseconds since the Unix epoch.
1780000669496111000Market status code:
- 0 — Closed
- 1 — Regular Hours
- 2 — Extended Hours
- 3 — After Hours
1Possible values: Market status code:
- 0 — Closed
- 1 — Regular Hours
- 2 — Extended Hours
- 3 — After Hours
1Possible values: Timestamp of the next status change in nanoseconds since the Unix epoch.
1780000669496111000Bad Request
Unauthorized
Forbidden
Internal Server Error
GET /v1/market_status?asset=42 HTTP/1.1
Host: fast.jp.stork-oracle.network
Authorization: YOUR_API_KEY
Accept: */*
{
"a": 42,
"ts": 1780000669496111000,
"cs": 1,
"ns": 0,
"chts": 1780000669496111000
}Last updated