get_error_logs
List the user's API request error logs — the same data shown on the Errors page of the Easyparser web app. Covers both real-time API errors and bulk job errors: each row has the platform, operation, domain, error code, channel (BULK/REALTIME), the request parameters that caused it, and a timestamp.
Use this tool when the user asks about failures: "why are my requests failing?", "show me recent errors", "any webhook errors today?", "what went wrong with my DETAIL calls?". Filter by error_channel (BULK or REALTIME), error_code, operation, or domain to narrow down. Each row includes a request_id and the query_params that triggered the error, so you can trace exactly which input failed.
This tool is free of per-call credits (monitoring endpoints do not consume credits).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number. Default 1. | |
| limit | No | Items per page (max 1000). Default 100. | |
| domain | No | Filter by marketplace domain. | |
| date_to | No | ISO date upper bound. | |
| order_by | No | Sort field. Default 'create_date'. | create_date |
| platform | No | Filter by platform (e.g. 'AMZ'). | |
| date_from | No | ISO date lower bound, e.g. 2026-08-01. | |
| operation | No | Filter by operation type, e.g. DETAIL or SEARCH. | |
| error_code | No | Filter by a specific error code, e.g. 'WEBHOOK_ERROR_404' or 'SOMETHING_WENT_WRONG'. | |
| order_type | No | Sort direction. 'desc' (newest first) is default. | desc |
| error_channel | No | Filter by channel: BULK (bulk job errors) or REALTIME (real-time API errors). Omit for both. |