Skip to main content
GET
/
api
/
replies
List Replies
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
  }
}
Fetch all replies with optional filtering and pagination.

Query Parameters

status
string
Filter by reply status. Options: pending, ready, sent, archived
category_id
string
Filter by category UUID
client_id
string
Filter by client UUID
connection_id
string
Filter by connection UUID
Search by email address, name, or subject
limit
integer
default:"20"
Number of replies to return (max 100)
offset
integer
default:"0"
Number of replies to skip for pagination

Response

data
array
Array of reply objects
pagination
object
Pagination metadata

Examples

curl -X GET "https://app.replyify.ai/api/replies?status=pending&limit=10" \
  -H "Authorization: Bearer rpl_your_api_key"

Response Example

{
  "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
  }
}