curl --request GET \
--url https://api.kadoa.com/v4/crawl/{sessionId}/pages \
--header 'x-api-key: <api-key>'{
"payload": [
{
"id": "<string>",
"url": "<string>",
"status": "DONE"
}
],
"pagination": {
"page": 123,
"pageSize": 123,
"totalItems": 123,
"totalPages": 123,
"hasMore": true
},
"sessionId": "<string>",
"error": "<string>"
}Get a paginated list of pages for a crawling session
curl --request GET \
--url https://api.kadoa.com/v4/crawl/{sessionId}/pages \
--header 'x-api-key: <api-key>'{
"payload": [
{
"id": "<string>",
"url": "<string>",
"status": "DONE"
}
],
"pagination": {
"page": 123,
"pageSize": 123,
"totalItems": 123,
"totalPages": 123,
"hasMore": true
},
"sessionId": "<string>",
"error": "<string>"
}API key for authentication
Current page number for pagination
x >= 1Number of items per page for pagination
x >= 1200