cURL
curl --request GET \ --url https://api.olyptik.io/crawl-logs/{crawlId} \ --header 'Authorization: Bearer <token>'
{ "results": [ { "id": "6870e3c687c81925622df89f", "message": "Page crawled successfully", "level": "info", "description": "Successfully crawled https://example.com/page", "crawlId": "6870e36787c81925622df818", "teamId": "680e8bc08cdb14f10180db6a", "data": { "url": "https://example.com/page", "statusCode": 200 }, "createdAt": "2025-07-11T10:13:26.966Z" } ], "page": 1, "limit": 1200, "totalPages": 0, "totalResults": 0 }
Returns all logs for a specific crawl
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of crawl to get logs for
Page number for pagination
x >= 1
Number of logs per page
1 <= x <= 1200
Paginated results with crawl logs
Show child attributes
x >= 0
Was this page helpful?