Facebook Live Checker

Perform sanity checks on Facebook UIDs using extreme-concurrency async proxies to instantly categorize outputs into LIVE and DEAD statuses.

Bulk Validation API (FB)

Pass an array of account UIDs to efficiently scrub them in parallel. Our internal engines securely verify the raw Facebook Graph ID (UID) exclusively.

How to Bulk Check?

While the simulator below lets you test a single UID, the accounts payload parameter is actually an array. If you want to verify multiple accounts simultaneously (up to 30 at a time), simply pass multiple UIDs in the array like this:
"accounts": ["100084323212", "61552312214", "100012345678"]

Payload Parameters

Enter the raw 10-16 digit Facebook UID (e.g. 100084323212). The system strictly accepts UIDs.

POST
https://api.hsmail.shop/v1/mailbox/facebook/live-check
Headers:Authorization: (Not Set - Set in Topbar)

Implementation Snippets

curl -X POST https://api.hsmail.shop/v1/mailbox/facebook/live-check \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"accounts":["100084323212"]}'