Facebook pages in,
trend signals out

Point social2llm at a Facebook page and we watch it for new posts. Every post comes back with its engagement counts and a link to its first comment — LLM-ready trend signals, polled or pushed straight to your webhook.

$ curl -X POST https://api.social2llm.com/v2/monitors \
  -H "X-API-Key: soc_..." \
  -d '{"platform": "facebook", "page_url": "https://www.facebook.com/<page>"}'

{
  "id": "mon_abc123",
  "platform": "facebook",
  "status": "active"
}

What you get

Facebook page monitors

Point us at a public Facebook page URL and we watch it continuously for new posts — no scraping to build or maintain on your end.

Engagement counts

Every delivered post carries its reaction, comment, and share counts, so you can gauge how it's landing at a glance.

First-comment links

Each post includes a direct link to its first comment, so you can follow where the conversation started.

Poll or webhook

Poll GET /v2/monitors/{id} for status, or pass a callback_url and we POST your endpoint as each new post is found.

API keys

Create and revoke X-API-Key credentials from the dashboard. Each monitor is owned by the key that created it; other tenants can't see it.

Part of the 2LLM Suite

Built on the proven 2LLM twin shell — shared auth, SSG landing, and suite cross-links.

See it in action

Same API, three flavors. Pick your stack.

# Create a monitor for a Facebook page
curl -X POST https://api.social2llm.com/v2/monitors \
  -H "X-API-Key: soc_..." \
  -H "Content-Type: application/json" \
  -d '{"platform":"facebook","page_url":"https://www.facebook.com/<page>","callback_url":"https://your-app.example/webhook"}'

# Response
{"id":"mon_abc123","platform":"facebook","page_url":"https://www.facebook.com/<page>","status":"active"}

# Fetch a monitor
curl https://api.social2llm.com/v2/monitors/mon_abc123 \
  -H "X-API-Key: soc_..."

# Reactivate a stopped monitor
curl -X POST https://api.social2llm.com/v2/monitors/mon_abc123/reactivate \
  -H "X-API-Key: soc_..."

# Stop monitoring (soft-delete)
curl -X DELETE https://api.social2llm.com/v2/monitors/mon_abc123 \
  -H "X-API-Key: soc_..."

social2llm is part of the 2LLM Suite — focused APIs that turn messy inputs into LLM-ready data. Also try scrape2llm and files2llm and html2media and html2reel and stream2llm and research2llm for the rest.

Get an API key and submit your first job in under a minute.

Get your API key →