cURL
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
API key for authentication
Current page number for pagination
x >= 1
Number of items per page for pagination
200
Response schema for getting paginated session pages
List of crawled pages with statuses
Show child attributes
Unique ID of the crawled page
URL of the crawled page
Status of the page crawl
DONE
CRAWLING
PENDING
Pagination details
Current page number
Items per page
Total number of items
Total number of pages
Whether there are more pages
ID of the crawling session
Error message if any