Find people from a post
Reads the people who commented on or reacted to a post, so they can be imported as leads. Each call counts against the sender profile's daily search budget, and the response reports what is left of it.
/social.getPostLeadsAuthorization
bearerAuth Enter your MailMoo API key (format: sk_live_...)
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/social.getPostLeads" \ -H "Content-Type: application/json" \ -d '{ "senderProfileId": "string", "postUrl": "string" }'{ "comments": [ { "author": "string", "text": "string", "date": "string", "authorDetails": { "headline": "string", "profileUrl": "string" } } ], "total": 0, "stoppedEarly": true, "dailyUsage": { "todayUsage": 0, "remainingSearches": 0, "limit": 0, "property1": null, "property2": null }}Send a direct message POST
Sends a direct message to a lead from a connected sender profile. The send counts against that profile's daily limit, so a call may be queued rather than delivered immediately.
Read a post's engagement POST
Reads both the comments and the reactions on a post, kept apart. Comments are fetched first: if the daily search budget runs out partway, `reactionsSkippedDueToDailyLimit` says so rather than the reactions coming back silently empty.

