Skip to main content
GET
/
followup-suggestions
Get Followup Suggestions
curl --request GET \
  --url https://backend-1.chatzy.ai/followup-suggestions
{
  "suggestions": [
    "Can you explain that in simpler terms?",
    "What are the next steps I should take?",
    "Could you provide an example?",
    "How do I fix this issue?",
    "Can you summarize the main points?"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.chatzy.ai/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

conversation_id
string
required

UUID of the conversation to fetch followup suggestions for.

Example:

"96333140-53c3-4d1d-bbd1-edd150d46ea2"

suggestions_count
integer
default:5

Number of followup suggestions to fetch (default 5, min 3, max 10).

Required range: 3 <= x <= 10
model
enum<string>

Model to use for generating followup suggestions. Allowed values: gpt-4o-mini, gemini-2.5-flash-lite.

Available options:
gpt-4o-mini,
gemini-2.5-flash-lite

Response

200 - application/json

Followup suggestions returned successfully.

suggestions
string[]
required
Example:
[
"Can you explain that in simpler terms?",
"What are the next steps I should take?",
"Could you provide an example?",
"How do I fix this issue?",
"Can you summarize the main points?"
]