Documentation
Everything you need to integrate and use AI Marketing Platform
API Reference
Complete REST API documentation with examples for all endpoints including posts, analytics, AI generation, and scheduling.
View API DocsQuick Start Guide
Get up and running in minutes. Learn how to authenticate, create your first post, and schedule content.
Get StartedIntegrations
Connect with OpenAI, Claude, Gemini, Zapier, n8n, WordPress, Shopify and more.
View IntegrationsSDKs & Libraries
Official SDKs for PHP, Python, JavaScript, and more. Community libraries also available.
View SDKsWebhooks
Set up webhooks to receive real-time notifications for post status, analytics updates, and more.
View WebhooksAuthentication
All API requests require an API key. You can generate your API key from the Settings page after logging in.
curl -X GET https://postoraai.com/api/v1/posts \
-H "Authorization: Bearer YOUR_API_KEY"
Create a Post
Create a new social media post using AI.
curl -X POST https://postoraai.com/api/v1/posts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"platform":"facebook","content":"Hello World!"}'