Skip to content

One API for Facebook & Instagram

Publishing, inbox, insights, widget, MCP. Your users click one consent screen. You call one REST API. MissLess owns the Meta app, the tokens and the app review.

MissLess Social API is a social-media engine you plug into your own product. One Meta app, reviewed and verified by MissLess. Your users connect their Facebook Pages and Instagram accounts with a single consent screen. You publish, schedule, read the inbox and reply through a REST API, drop in the widget where you do not want to build UI, and let an AI assistant drive it over MCP.

AuthAuthorization: Bearer mls_live_…

Format JSON in, JSON out, ISO-8601 UTC timestamps

Terminal window
curl -X POST "https://social.missless.tel/v1/posts?wait=true" \
-H "Authorization: Bearer $MISSLESS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workspace": "ws7k2m9p4q1r8t3",
"caption": "Fresh cuts, Friday walk-ins welcome",
"media": ["med9x2c4v6b8n1m"],
"targets": ["acig4h2k5m7p9r1", "acfb8n2c4v6b1m3"]
}'

The response is the post with status: "published" and a permalink per network. Media was uploaded one call earlier, the accounts were connected by the user through a hosted link. That is the whole loop: see it end to end.

Getting started

The model, a five-call quickstart, the objects, and how keys work. Start here

Connect accounts

Hosted connect links, the account object, and what your users need on the Meta side. Connect links

Publishing

Media upload, posts with per-network captions, scheduling, and the Instagram rules that bite. Posts

Inbox

DMs and comments as conversations. Reply, private-reply, quick replies, the 24-hour window. Conversations

Webhooks

One endpoint, signed deliveries, every event type with a payload, retries and polling. Set up webhooks

Widget

Composer, calendar, inbox and accounts surfaces in an iframe. Server-minted sessions, theming. Widget overview

MCP

Let Claude Code, Cursor or any MCP client publish and reply on a workspace. MCP overview

Guides

A complete Next.js partner integration, a Python example, and every endpoint as a curl one-liner. Next.js integration