Skip to main content
GET
/
api
/
campaigns
/
next-available-slot
Get the next date with available SMS quota
curl --request GET \
  --url https://your-instance.example.com/api/campaigns/next-available-slot \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "isUnlimited": false,
  "timezone": "America/Toronto",
  "dailyLimit": 500,
  "todayDate": "2026-05-18",
  "todayUsage": 480,
  "todayAvailableQuota": 20,
  "nextAvailableDate": "2026-05-19",
  "availableQuota": 500,
  "daysUntilAvailable": 1,
  "message": "Next slot with full daily quota is tomorrow."
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

contactCount
integer
default:0

Number of contacts the upcoming campaign would target. Omit for general quota info.

Required range: x >= 0

Response

Next available slot returned

success
boolean
isUnlimited
boolean
timezone
string
dailyLimit
integer | null
todayDate
string

Org-local YYYY-MM-DD.

todayUsage
integer
todayAvailableQuota
integer | null
nextAvailableDate
string

Org-local YYYY-MM-DD.

availableQuota
integer | null
daysUntilAvailable
integer
message
string