Read a post's engagement
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.
/social.getPostEngagementAuthorization
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.getPostEngagement" \ -H "Content-Type: application/json" \ -d '{ "senderProfileId": "string", "postUrl": "string" }'{ "comments": [ { "author": "string", "text": "string", "date": "string", "authorDetails": { "headline": "string", "profileUrl": "string" } } ], "reactions": [ { "author": "string", "text": "string", "date": "string", "authorDetails": { "headline": "string", "profileUrl": "string" } } ], "totalComments": 0, "totalReactions": 0, "stoppedEarlyComments": true, "stoppedEarlyReactions": true, "reactionsSkippedDueToDailyLimit": true, "dailyUsageAfterComments": { "todayUsage": 0, "remainingSearches": 0, "limit": 0, "property1": null, "property2": null }, "dailyUsage": { "todayUsage": 0, "remainingSearches": 0, "limit": 0, "property1": null, "property2": null }}Find people from a post 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.
List a person's posts GET
Reads the posts a person has published, newest first. Use it to find a post worth pulling engagement from, then pass its URL to the post endpoints.

