Skip to main content
GET
/
v1
/
10dlc
/
brands
List Brands
curl --request GET \
  --url https://api.example.com/v1/10dlc/brands \
  --header 'X-API-Key: <x-api-key>'
{
  "success": true,
  "brands": [
    {
      "id": "<string>",
      "brand_id": "<string>",
      "company_name": "<string>",
      "display_name": "<string>",
      "entity_type": "<string>",
      "vertical": "<string>",
      "status": "<string>",
      "tenant_id": "<string>",
      "created_at": {}
    }
  ],
  "count": 123
}
Retrieve all 10DLC brands registered for your tenant.

Authentication

X-API-Key
string
required
Your API key

Query Parameters

tenant_id
string
Your tenant identifier. Must match the tenant associated with your API key. If provided with a mismatched value, the request will be rejected with a 403 error.

Response

success
boolean
Whether the request was successful
brands
array
Array of brand objects
count
integer
Total number of brands

Example Request

curl -X GET "https://api.teli.ai/v1/10dlc/brands?tenant_id=telitest" \
  -H "X-API-Key: YOUR_API_KEY"

Example Response

200
{
  "success": true,
  "brands": [
    {
      "id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
      "brand_id": "B4KRR4F",
      "company_name": "My Company LLC",
      "display_name": "My Company",
      "entity_type": "PRIVATE_PROFIT",
      "vertical": "REAL_ESTATE",
      "ein": "123456789",
      "phone": "+13135551234",
      "email": "admin@mycompany.com",
      "status": "ACTIVE",
      "tenant_id": "telitest",
      "created_at": "2026-01-15T10:30:00Z"
    }
  ],
  "count": 1,
  "powered_by": "Teli"
}