cURL
curl --request GET \ --url https://api.example.com/api/replies
{ "data": [ { "id": "<string>", "from_email": "<string>", "from_name": "<string>", "to_email": "<string>", "subject": "<string>", "body_text": "<string>", "body_html": "<string>", "status": "<string>", "category_id": "<string>", "category": {}, "ai_response": "<string>", "sent_response": "<string>", "client_id": "<string>", "connection_id": "<string>", "contact_id": "<string>", "received_at": "<string>", "handled_at": "<string>", "created_at": "<string>" } ], "pagination": { "total": 123, "limit": 123, "offset": 123, "hasMore": true } }
Retrieve a list of replies in your workspace
pending
ready
sent
archived
Show Reply Object
Show child attributes
curl -X GET "https://app.replyify.ai/api/replies?status=pending&limit=10" \ -H "Authorization: Bearer rpl_your_api_key"
{ "data": [ { "id": "abc123-def456-ghi789", "from_email": "john@example.com", "from_name": "John Smith", "to_email": "outreach@yourcompany.com", "subject": "Re: Quick question about your service", "body_text": "Hi, I'd love to learn more about what you offer...", "body_html": "<p>Hi, I'd love to learn more...</p>", "status": "ready", "category_id": "cat-interested-123", "category": { "id": "cat-interested-123", "name": "Interested", "color": "#10B981" }, "ai_response": "Hi John,\n\nThanks for your interest! I'd be happy to share more about...", "sent_response": null, "client_id": "client-456", "connection_id": "conn-789", "contact_id": "contact-012", "received_at": "2024-01-15T14:30:00Z", "handled_at": null, "created_at": "2024-01-15T14:30:05Z" } ], "pagination": { "total": 45, "limit": 10, "offset": 0, "hasMore": true } }