# Get agent logs Returns run execution logs in stringify format. The logs contain the following fields: - name: run name - id: run unique identifier - model: model name - error: run error if exists, else null - status: run status - latency: run latency - end_time: terminated run timestamp - completion_tokens: number of tokens returned by the model when the run is finished - total_tokens: total number of tokens associated with the run The results are paginated. Use offset and limit parameters to navigate through pages. Endpoint: GET /core/v1/logs Version: v1 Security: APIKeyHeader ## Query parameters: - `run_id` (any) - `limit` (integer) Number of items to return per page - `start_timestamp` (integer) The epoch timestamp to start the search - `end_timestamp` (integer) The epoch timestamp to end the search ## Response 401 fields (application/json): - `body` (string, required) Error message or description - `status_code` (integer, required) HTTP status code Example: 400 - `details` (any) Additional error details if available ## Response 403 fields (application/json): - `body` (string, required) Error message or description - `status_code` (integer, required) HTTP status code Example: 400 - `details` (any) Additional error details if available ## Response 422 fields (application/json): - `body` (string, required) Error message or description - `status_code` (integer, required) HTTP status code Example: 400 - `details` (any) Additional error details if available ## Response 500 fields (application/json): - `body` (string, required) Error message or description - `status_code` (integer, required) HTTP status code Example: 400 - `details` (any) Additional error details if available