List tenants
curl --request GET \
--url https://api.getdialed.ai/v1/tenants \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getdialed.ai/v1/tenants"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getdialed.ai/v1/tenants', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getdialed.ai/v1/tenants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getdialed.ai/v1/tenants"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getdialed.ai/v1/tenants")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/tenants")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"buckets": {
"Upload": {
"caps": {
"60": 20,
"3600": 400,
"86400": 2000
},
"effective": {
"60": 16,
"3600": 320,
"86400": 1600
},
"label": "Uploading (batch)",
"margin_pct": 80,
"max_records_per_request": 50000,
"min_interval_ms": 250,
"observed_at": "2026-08-22T18:00:00Z",
"source": "live"
}
},
"counters_synced_at": "2026-08-22T18:00:00Z",
"created_at": "2026-08-22T17:00:00Z",
"id": "ten_9f2c1a7b3d4e5f60",
"is_manual": false,
"label": "Acme Corp",
"org_id": "org_a1b2c3d4",
"platform_id": "five9",
"status": "active",
"sync_status": "live",
"updated_at": "2026-08-22T18:00:00Z"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": "Authentication required"
}{
"detail": "is_manual=true and platform_id disagree"
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Tenants — /v1/tenants
List tenants
List every tenant your organization holds, across every platform — vendor accounts discovered from your credentials and tenants you named yourself alike. Each row carries its rate budget: the provider’s raw caps per time window, the margin_pct safety margin, and the effective budget computed from both. Filter with platform_id, or with is_manual to separate tenants you named from vendor accounts. Sort with sort_by/order (default newest-first), paginate with limit/skip. Readable by any organization member.
GET
/
tenants
List tenants
curl --request GET \
--url https://api.getdialed.ai/v1/tenants \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getdialed.ai/v1/tenants"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getdialed.ai/v1/tenants', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getdialed.ai/v1/tenants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getdialed.ai/v1/tenants"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getdialed.ai/v1/tenants")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/tenants")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"buckets": {
"Upload": {
"caps": {
"60": 20,
"3600": 400,
"86400": 2000
},
"effective": {
"60": 16,
"3600": 320,
"86400": 1600
},
"label": "Uploading (batch)",
"margin_pct": 80,
"max_records_per_request": 50000,
"min_interval_ms": 250,
"observed_at": "2026-08-22T18:00:00Z",
"source": "live"
}
},
"counters_synced_at": "2026-08-22T18:00:00Z",
"created_at": "2026-08-22T17:00:00Z",
"id": "ten_9f2c1a7b3d4e5f60",
"is_manual": false,
"label": "Acme Corp",
"org_id": "org_a1b2c3d4",
"platform_id": "five9",
"status": "active",
"sync_status": "live",
"updated_at": "2026-08-22T18:00:00Z"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": "Authentication required"
}{
"detail": "is_manual=true and platform_id disagree"
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Authorizations
APIKeyHeaderHTTPBearer
Query Parameters
Allowed sort fields when listing tenants.
Available options:
created_at, label Sort direction for list endpoints that accept a sort_by field.
Available options:
asc, desc Required range:
1 <= x <= 500Required range:
x >= 0