GET
/
cube
/
{id}
Get
curl --request GET \
  --url https://routing.solvice.io/cube/{id} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "status": "IN_PROGRESS",
  "errorMessage": "<string>",
  "responseType": "<string>",
  "hash": 123,
  "cubeResponseId": 123,
  "updatedAt": "<string>",
  "createdAt": "<string>"
}
Get cube status

Authorizations

Authorization
string
header
required

Api Key based authentication (apikey)

Path Parameters

id
integer
required

Response

200 - application/json

OK

id
integer

Cube id.

status
enum<string> | null

Cube status (IN_PROGRESS, SUCCEEDED, FAILED).

Available options:
IN_PROGRESS,
AGGREGATING,
SUCCEEDED,
FAILED
errorMessage
string | null

Error message if the Cube failed.

responseType
string | null

Type of the Cube response, e.g., 'coefficients'.

hash
integer | null

Hash of the Cube request

cubeResponseId
integer

Cube response id.

updatedAt
string | null

Last update time of the Cube.

createdAt
string | null

Creation time of the Cube.