Documentation Index
Fetch the complete documentation index at: https://postflow.app/docs/llms.txt
Use this file to discover all available pages before exploring further.
The PostFlow API gives you access to analytics data from your PostFlow organization and provides you with tools for scheduling and publishing social media posts directly from your own application, automation tool, or AI assistant.
What is PostFlow?
PostFlow is a social media management platform designed to help teams and creators plan, collaborate, and publish social media content.
Base URL
The base URL for the PostFlow API is:
https://api.postflow.app/v1
For media requests use base URL:
https://media.postflow.app/api/v1
Authentication
All API requests require a bearer token in the Authorization header.
You can generate an API token from your PostFlow account settings. Once you have your token, include it in the Authorization header of your API requests as follows:
Authorization: Bearer YOUR_API_TOKEN
API requests must include the following headers:
Accept: application/json
Content-Type: application/json
Make your first request
Once you have a token, you can make requests directly to the API. The following example returns basic information about your organization:
curl https://api.postflow.app/v1/organizations \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"