Skip to main content
GET
/
terms_of_service
/
info
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});

const response = await client.termsOfService.retrieveInfo();

console.log(response.agreements);
{
  "agreements": [
    {
      "product_type": "branded_calling",
      "current_version": "v1.0.0",
      "terms_url": "https://telnyx.com/terms/reputation-services",
      "effective_date": "2025-07-10",
      "description": "Terms and Conditions for Telnyx Number Reputation service"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

product_type
enum<string>

Optional product filter. Omit to return info for all products. Telnyx product the Terms of Service apply to.

Available options:
branded_calling,
number_reputation
Example:

"branded_calling"

Response

Terms of Service information.

agreements
object[]