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
Unique identifier for the log entry
"6870e3c687c81925622df89f"
Log message
"Page crawled successfully"
Log level
info
debug
warn
error
"info"
Detailed description of the log entry
"Successfully crawled https://example.com/page"
ID of the crawl this log belongs to
"6870e36787c81925622df818"
ID of the team associated with this log
"680e8bc08cdb14f10180db6a"
Additional data associated with the log entry
{ "url": "https://example.com/page", "statusCode": 200}
Timestamp when the log was created
"2025-07-11T10:13:26.966Z"
x >= 0
Was this page helpful?