GET
/
cube
/
{id}
/
progress
Get Progress
curl --request GET \
  --url https://routing.solvice.io/cube/{id}/progress \
  --header 'Authorization: <api-key>'
{
  "nrOfSucceededSlices": 8,
  "nrOfFailedSlices": 0,
  "nrOfSlices": 8
}
After sending the cube request to the API, you can follow the progress in this endpoint. The progress will list the created submatrices (children). Average calculation time of matrix :
Matrix SizeCalculation time
10x100.1s
100x1000.2s
250x2500.8s
1000x10004.6s
10000x1000024.9s

Authorizations

Authorization
string
header
required

Api Key based authentication (apikey)

Path Parameters

id
integer
required

Response

200 - application/json

OK

nrOfSucceededSlices
integer | null

Cube requests get split up into multiple Table requests, one for each slice. nrOfSucceededSlices is the number of slice requests that succeeded.

Examples:

8

nrOfFailedSlices
integer | null

Cube requests get split up into multiple Table requests, one for each slice. nrOfFailedSlices is the number of slice requests that failed.

Examples:

0

nrOfSlices
integer | null

Cube requests get split up into multiple Table requests, one for each slice. nrOfSlices is the total number of slice requests.

Examples:

8