MailMoo
EndpointsSocial

Read a post

Reads a single post by URL. Unlike the engagement endpoints, this costs nothing against the sender profile's daily search budget, so it is the cheap way to confirm a post exists and is visible before pulling people from it.

POST/social.getPost

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.getPost" \  -H "Content-Type: application/json" \  -d '{    "senderProfileId": "string",    "postUrl": "string"  }'
{  "post": {    "text": "string",    "url": "string",    "createdAt": "string",    "author": "string"  }}