curl --request GET \
--url https://api.fireworks.ai/inference/v1/responses \
--header 'Authorization: Bearer <token>'{
"data": [
{
"created_at": 123,
"status": "<string>",
"model": "<string>",
"output": [
{
"id": "<string>",
"role": "<string>",
"content": [
{
"type": "<string>",
"text": "<string>"
}
],
"status": "<string>",
"type": "message"
}
],
"id": "<string>",
"object": "response",
"previous_response_id": "<string>",
"usage": {},
"error": {},
"incomplete_details": {},
"instructions": "<string>",
"max_output_tokens": 123,
"max_tool_calls": 2,
"parallel_tool_calls": true,
"reasoning": {},
"store": true,
"temperature": 1,
"text": {},
"tool_choice": "auto",
"tools": [
{}
],
"top_p": 1,
"truncation": "disabled",
"user": "<string>",
"metadata": {}
}
],
"has_more": true,
"object": "list",
"first_id": "<string>",
"last_id": "<string>"
}Get a list of all responses for the authenticated account.
Args: limit: Maximum number of responses to return (default: 20, max: 100) after: Cursor for pagination - return responses after this ID before: Cursor for pagination - return responses before this ID
curl --request GET \
--url https://api.fireworks.ai/inference/v1/responses \
--header 'Authorization: Bearer <token>'{
"data": [
{
"created_at": 123,
"status": "<string>",
"model": "<string>",
"output": [
{
"id": "<string>",
"role": "<string>",
"content": [
{
"type": "<string>",
"text": "<string>"
}
],
"status": "<string>",
"type": "message"
}
],
"id": "<string>",
"object": "response",
"previous_response_id": "<string>",
"usage": {},
"error": {},
"incomplete_details": {},
"instructions": "<string>",
"max_output_tokens": 123,
"max_tool_calls": 2,
"parallel_tool_calls": true,
"reasoning": {},
"store": true,
"temperature": 1,
"text": {},
"tool_choice": "auto",
"tools": [
{}
],
"top_p": 1,
"truncation": "disabled",
"user": "<string>",
"metadata": {}
}
],
"has_more": true,
"object": "list",
"first_id": "<string>",
"last_id": "<string>"
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
Successful Response
Response model for listing responses.
Returned from the GET /v1/responses endpoint. Provides a paginated list of response objects with cursor-based pagination support.
An array of response objects, sorted by creation time in descending order (most recent first).
Show child attributes
Indicates whether there are more responses available beyond this page. If true, use the 'last_id' value as the 'after' cursor to fetch the next page.
The object type, which is always 'list'.
The ID of the first response in the current page. Used for pagination.
The ID of the last response in the current page. Use this as the 'after' cursor to fetch the next page if has_more is true.
Was this page helpful?