Skip to main content

Overview

The Tabbly API allows you to programmatically interact with the Tabbly platform to trigger calls, manage agents, retrieve call logs, and more. All API endpoints require authentication using your organization API key.

Base URL

https://www.tabbly.io/dashboard/agents/endpoints

Authentication

All API requests require your organization API key to be included in the request body. Include the api_key parameter in your request:
{
  "api_key": "your_organization_api_key_here"
}

Rate Limits

API rate limits apply to prevent abuse. Contact support if you need higher limits.

Phone Number Format

All phone numbers must be in E.164 format: +[country code][number] Examples:
  • US: +14156801215
  • India: +917359043943

Response Format

All API responses are returned in JSON format. Success responses include a success field set to true, while error responses include error details.

Error Codes

Status CodeDescription
200Success
400Missing required fields
402Insufficient wallet balance
404Resource not found (Organization/Agent/Phone number)
500Server error

Getting Started