Skip to main content

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โ€‹

  1. Log in to your Flow dashboard
  2. Navigate to Settings โ†’ API Keys
  3. Click Create API Key
  4. Copy your key and paste it in the "Authorize" button above

Making Your First Requestโ€‹

  1. Click the Authorize button above
  2. Enter your API key: flow_sk_live_...
  3. Click Authorize
  4. Expand any endpoint (e.g., GET /v1/channels)
  5. Click Try it out
  6. Click Execute

Example: Create a Postโ€‹

  1. Find POST /v1/posts in the list
  2. Click Try it out
  3. Enter your request body:
{
"channelId": "your_channel_id",
"content": "Hello from the Flow API! ๐Ÿš€",
"scheduledFor": "2024-12-25T10:00:00Z"
}
  1. Click Execute
  2. 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โ€‹