Skip to main content
GET
/
table
/
{id}
/
progress
Get table progress
curl --request GET \
  --url https://routing.solvice.io/table/{id}/progress \
  --header 'Authorization: <api-key>'
{
  "nrOfSucceededChildren": 123,
  "nrOfFailedChildren": 123,
  "nrOfChildren": 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 table 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

nrOfSucceededChildren
integer<int64> | null

Bigger table requests get split up. nrOfSucceededChildren is the number of child requests that succeeded.

Example:

8

nrOfFailedChildren
integer<int64> | null

Bigger table requests get split up. nrOfFailedChildren is the number of child requests that failed.

Example:

0

nrOfChildren
integer<int64> | null

Bigger table requests get split up. nrOfChildren is the number of total child requests.

Example:

8