MailMoo
EndpointsSocial

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.

POST/social.getPostLeads

Authorization

bearerAuth
AuthorizationBearer <token>

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