curl --request GET \
--url https://routing.solvice.io/table/{id}/progress \
--header 'Authorization: <api-key>'{
"nrOfSucceededChildren": 123,
"nrOfFailedChildren": 123,
"nrOfChildren": 123
}Get the computation progress of a table request. Useful for tracking large matrix calculations.
curl --request GET \
--url https://routing.solvice.io/table/{id}/progress \
--header 'Authorization: <api-key>'{
"nrOfSucceededChildren": 123,
"nrOfFailedChildren": 123,
"nrOfChildren": 123
}| 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
Bigger table requests get split up. nrOfSucceededChildren is the number of child requests that succeeded.
8
Bigger table requests get split up. nrOfFailedChildren is the number of child requests that failed.
0
Bigger table requests get split up. nrOfChildren is the number of total child requests.
8