curl --request GET \
--url https://routing.solvice.io/cube/{id}/progress \
--header 'Authorization: <api-key>'{
"nrOfSucceededSlices": 123,
"nrOfFailedSlices": 123,
"nrOfSlices": 123
}Get the computation progress of a cube request. Useful for tracking large matrix calculations.
curl --request GET \
--url https://routing.solvice.io/cube/{id}/progress \
--header 'Authorization: <api-key>'{
"nrOfSucceededSlices": 123,
"nrOfFailedSlices": 123,
"nrOfSlices": 123
}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 :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.
| Matrix Size | Calculation time |
|---|---|
10x10 | 0.1s |
100x100 | 0.2s |
250x250 | 0.8s |
1000x1000 | 4.6s |
10000x10000 | 24.9s |
API key authentication. Include your API key in the Authorization header.
OK
Cube requests get split up into multiple Table requests, one for each slice. nrOfSucceededSlices is the number of slice requests that succeeded.
8
Cube requests get split up into multiple Table requests, one for each slice. nrOfFailedSlices is the number of slice requests that failed.
0
Cube requests get split up into multiple Table requests, one for each slice. nrOfSlices is the total number of slice requests.
8