GET /v1/replies/:id
GET
scope: leads.read
0 credits
/v1/replies/:idFetch a specific reply with full thread context. Useful when an external tool or LLM needs the complete conversation history to generate a response.
Try it
GET
/v1/replies/{id}Saved locally in your browser
Path Parameters
Reply UUID
URL
https://slazbvfvliieskvkjtav.supabase.co/functions/v1/api-gateway/v1/replies/{id}Enter your API key above to send requests
Response
{
"reply": {
"id": "uuid",
"from_email": "john@acme.com",
"from_name": "John Doe",
"campaign_name": "Q1 SaaS Outreach",
"body": "Can we schedule a call?",
"classification": "hot",
"received_at": "2026-03-20T14:30:00Z"
},
"thread": [
{ "role": "outbound", "content": "Hi John, I noticed Acme Corp is scaling...", "sent_at": "2026-03-18T09:00:00Z" },
{ "role": "reply", "content": "Can we schedule a call?", "received_at": "2026-03-20T14:30:00Z" }
],
"thread_length": 2
}