MailMoo
EndpointsSocial

List a person's posts

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.

GET/social.getUserPosts

Authorization

bearerAuth
AuthorizationBearer <token>

Enter your MailMoo API key (format: sk_live_...)

In: header

Query Parameters

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/social.getUserPosts?input=%7B%22senderProfileId%22%3A%22string%22%2C%22identifier%22%3A%22string%22%2C%22limit%22%3A10%2C%22cursor%22%3A%22string%22%7D"
{  "items": [    {      "text": "string",      "url": "string",      "createdAt": "string",      "author": "string"    }  ],  "cursor": null}