Skip to main content

SDKs Overview

Firetell provides client libraries to help you integrate with our platform more easily.

:::note Coming Soon Official SDKs are currently in development. In the meantime, you can use the REST API directly with any HTTP client. :::

Planned SDKs

LanguageStatusPackage
JavaScript/TypeScript🔜 Planned@firetell/sdk
Python🔜 Plannedfiretell

Using the REST API Directly

You can integrate with Firetell using any HTTP client in any programming language:

JavaScript (fetch)

const response = await fetch('https://yourcompany.firetell.app/api/1.0/phone-numbers', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
});

const data = await response.json();
console.log(data);

Python (requests)

import requests

response = requests.get(
'https://yourcompany.firetell.app/api/1.0/phone-numbers',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
}
)

data = response.json()
print(data)

cURL

curl -X GET "https://yourcompany.firetell.app/api/1.0/phone-numbers" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"

Stay Updated

Follow our GitHub for SDK release announcements, or contact us at developers@firetell.com.