curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/batchJobs/{batch_job_id}:getLogs \
--header 'Authorization: Bearer <token>'{
"entries": [
{
"logTime": "2023-11-07T05:31:56Z",
"rank": 123,
"message": "<string>"
}
],
"nextPageToken": "<string>"
}curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/batchJobs/{batch_job_id}:getLogs \
--header 'Authorization: Bearer <token>'{
"entries": [
{
"logTime": "2023-11-07T05:31:56Z",
"rank": 123,
"message": "<string>"
}
],
"nextPageToken": "<string>"
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
Ranks, for which to fetch logs.
The maximum number of log entries to return. The maximum page_size is 10,000, values above 10,000 will be coerced to 10,000. If unspecified, the default is 100.
A page token, received from a previous GetBatchJobLogsRequest call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to GetBatchJobLogsRequest must match the call that provided the page token.
Entries before this timestamp won't be returned. If not specified, up to page_size last records will be returned.
Only entries matching this filter will be returned. Currently only basic substring match is performed.
Pagination direction, time-wise reverse direction by default (false).
The fields to be returned in the response. If empty or "*", all fields will be returned.
A successful response.
A token, which can be sent as page_token to retrieve the next page.
If this field is omitted, there are no subsequent pages.
Was this page helpful?