Fetch Conversations
Fetch Conversations API endpoint for Sweeppea. GET /ai/conversations. Complete documentation with code examples in cURL, JavaScript, and Python.
GET
/api/v3/ai/conversations
Description
This endpoint allows you to fetch conversations. Use this to manage your ai assistant data programmatically through the Sweeppea API.
Code Examples
curl -X GET "https://api-v3.sweeppea.com/ai/conversations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Response
200 OK
{
"success": true,
"data": {},
"message": "Operation completed successfully"
}