# List domain conversation leads List conversations about domains you own or are interested in. Includes buyer-seller messaging threads. Endpoint: POST /mcp/v1/actions/ud_leads_list Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `domain` (string) Filter by specific domain name (e.g., "example.crypto") - `skipEmpty` (boolean) Skip conversations with no messages (default: true) - `skip` (integer) Number of conversations to skip (pagination offset, default: 0) - `take` (integer) Number of conversations to return (1-100, default: 20) ## Response 200 fields (application/json): - `leads` (array) - `leads.id` (number) Conversation ID (use with ud_lead_messages_list) - `leads.domainName` (string) - `leads.domainId` (number) - `leads.createdAt` (string) - `leads.updatedAt` (string) - `leads.shortLatestMessageContent` (string) Preview of latest message (truncated to 100 chars) - `leads.unreadMessageCount` (number) Number of unread messages - `leads.participants` (array) - `leads.participants.id` (string) Encoded participant ID - `leads.participants.role` (string) Enum: "BUYER", "SELLER" - `total` (number) Total number of conversations matching filters - `skip` (number) Number of items skipped - `take` (number) Number of items returned ## Response 401 fields