Pogton Connect is a turnkey OAuth API that lets you link your users' social media accounts and publish content on their behalf — in minutes, not months.
No OAuth headaches, no token management, no platform-specific quirks. We handle all of it.
Your backend calls our API with a user ID. We return a signed, short-lived URL to send to that user.
POST /api/v1/connect-linkThe user visits the link, sees your branded connect page, and authenticates with any supported platform via OAuth.
https://pogton.com/p/your-org?token=...Call our posts endpoint with the user ID, content, and target platforms. We handle publishing, tokens, and errors.
POST /api/v1/postsA complete social publishing infrastructure so you can focus on your product, not OAuth.
Every connect link is cryptographically signed and expires after a short window. No shared tokens.
Customise the OAuth page your users land on — logo, colours, and messaging — all from your dashboard.
One API call publishes to all connected platforms simultaneously. We normalise every platform's quirks for you.
We auto-refresh OAuth tokens and handle revocations so your publish calls never fail due to expired credentials.
Monitor connected accounts, platform stats, and publish activity across all your users from one place.
Generate scoped API keys with full audit logs. Revoke access instantly without affecting your users.
Generate a secure, short-lived link for each user. They connect their accounts. You publish content with a single API call — to all their platforms at once.
# 1. Generate a connect link for your user curl -X POST "https://pogton.com/api/v1/connect-link" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{"user_id":"user_123"}' # Returns a signed URL → send it to your user # { "url": "https://pogton.com/p/your-org?token=..." } # 2. Publish content once they've connected curl -X POST "https://pogton.com/api/v1/posts" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "user_id": "user_123", "platforms": ["twitter", "linkedin"], "content": "Hello from my app! 🚀" }'
Start with a free account. No credit card required. Up and running in under 10 minutes.