FlowVoice API
  1. Getting started
FlowVoice API
  • Getting started
    • Overview
    • Authentication
  • Calls
    • Call Create
      POST
    • Calls List
      GET
    • Call Read
      GET
  • Calendars
    • Calendars List
      GET
    • Calendar Read
      GET
  • Company
    • Company Read
      GET
  • Events
    • Events List
      GET
    • Events Read
      GET
  1. Getting started

Overview

Introduction#

The FlowVoice API enables seamless integration with our platform, allowing you to manage voice communication, automate workflows, and access real-time data. This documentation provides the necessary details to authenticate, interact with endpoints, and retrieve structured responses.

Base URL#

All API requests should be made to the following base URL:
https://api.getflowvoice.com/public

Authentication#

FlowVoice API uses API key authentication. Each request must include the Authorization: Bearer header with a valid API key obtained from your company settings.

Example Request#

Rate Limits#

To ensure fair usage, API requests are rate-limited. If the limit is exceeded, the API will return a 429 Too Many Requests response.
Rate LimitScope
100 requests per minuteGlobally

Response Format#

All responses are returned in JSON format. Below is an example of a successful response:
{
    "status": "success",
    "data": {
        "id": "12345",
        "name": "Example Data"
    }
}

Error Handling#

The API returns standard HTTP status codes to indicate success or failure. Common error responses include:
Status CodeMeaningDescription
400Bad RequestThe request is malformed or contains invalid parameters.
401UnauthorizedAPI key is missing or invalid.
403ForbiddenThe API key does not have permission to access the resource.
429Too Many RequestsRate limit exceeded.
500Internal Server ErrorA problem occurred on FlowVoice’s side.

Getting Started#

To begin using the API:
1.
Generate your API key from the FlowVoice dashboard.
2.
Include the Authorization: Bearer in all requests.
3.
Explore the API endpoints to integrate FlowVoice into your system.
For more details, check out our full API documentation. If you have any questions, contact our support team at support@getflowvoice.com.
Modified at 2025-06-05 13:08:15
Next
Authentication
Built with