Interactive API Reference
Test the Flow API directly from your browser. Enter your API key and make live requests.
๐งช Try It Out
Test the Flow API directly from this page. Enter your API key to make live requests.
Getting Your API Keyโ
- Log in to your Flow dashboard
- Navigate to Settings โ API Keys
- Click Create API Key
- Copy your key and paste it in the "Authorize" button above
Making Your First Requestโ
- Click the Authorize button above
- Enter your API key:
flow_sk_live_... - Click Authorize
- Expand any endpoint (e.g.,
GET /v1/channels) - Click Try it out
- Click Execute
Example: Create a Postโ
- Find
POST /v1/postsin the list - Click Try it out
- Enter your request body:
{
"channelId": "your_channel_id",
"content": "Hello from the Flow API! ๐",
"scheduledFor": "2024-12-25T10:00:00Z"
}
- Click Execute
- See the response with your new post ID
Tipsโ
- Authentication: Click "Authorize" once to authenticate all requests
- Testing: Use the interactive API to test endpoints before writing code
- Examples: Each endpoint includes example request/response schemas
- Validation: The API validates your requests and shows errors inline
Next Stepsโ
- Read the API Overview
- Check out SDK Documentation
- Explore Guides