EndpointsSocial
Check remaining daily sending and search allowance
Returns how much daily sending allowance and daily search allowance each connected sender profile has left. Omit senderProfileId to list every sender profile with a connected account. A send or a post-engagement fetch may fail or queue when remaining is 0. Pass senderProfileId from this response to the other social endpoints.
GET
/social.getAccountLimitsAuthorization
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
curl -X GET "https://example.com/social.getAccountLimits"{ "accounts": [ { "senderProfileId": "string", "name": "string", "canSendMessage": true, "sending": { "messages": { "used": 0, "remaining": 0, "limit": 0 }, "connectionRequests": { "used": 0, "remaining": 0, "limit": 0 }, "connectionRequestsWithNote": { "used": 0, "remaining": 0, "limit": 0 }, "premiumMessages": { "used": 0, "remaining": 0, "limit": 0 }, "comments": { "used": 0, "remaining": 0, "limit": 0 }, "reactions": { "used": 0, "remaining": 0, "limit": 0 }, "profileVisits": { "used": 0, "remaining": 0, "limit": 0 } }, "search": { "used": 0, "remaining": 0, "limit": 0 } } ]}
