Skip to main content
GET
/
cube
/
{id}
/
progress
Get cube progress
curl --request GET \
  --url https://routing.solvice.io/cube/{id}/progress \
  --header 'Authorization: <api-key>'
{
  "nrOfSucceededSlices": 123,
  "nrOfFailedSlices": 123,
  "nrOfSlices": 123
}

Documentation Index

Fetch the complete documentation index at: https://maps.solvice.io/llms.txt

Use this file to discover all available pages before exploring further.

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 authentication. Include your API key in the Authorization header.

Path Parameters

id
integer<int64>
required

Response

200 - application/json

OK

nrOfSucceededSlices
integer<int64> | null

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

Example:

8

nrOfFailedSlices
integer<int64> | null

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

Example:

0

nrOfSlices
integer<int64> | null

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

Example:

8