curl --request GET \
--url https://api.instantly.ai/api/v2/crm-actions/phone-numbers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.instantly.ai/api/v2/crm-actions/phone-numbers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.instantly.ai/api/v2/crm-actions/phone-numbers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.instantly.ai/api/v2/crm-actions/phone-numbers")
.header("Authorization", "Bearer <token>")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instantly.ai/api/v2/crm-actions/phone-numbers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.instantly.ai/api/v2/crm-actions/phone-numbers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"id": "01a082d0-83a4-7500-a8b4-f76909dad291",
"timestamp_created": "2026-09-08T20:58:18.404Z",
"organization_id": "01a082d0-83a4-7500-a8b4-f76a7e21b661",
"phone_number": "+15551234567",
"country": "US",
"locality": "San Francisco",
"subscription_id": "sub_1PuaE1B3VEKBA0ygDAKk7QVc",
"twilio_sid": "PN998dda028e07a49c8038b2206341d463",
"renewal_date": "2026-09-08T20:58:18.404Z",
"price": 1
}
]{
"statusCode": 401,
"error": "Unauthorized",
"message": "Missing Authorization header"
}{
"statusCode": 402,
"error": "Payment Required",
"message": "Workspace does not have an active paid plan"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded"
}List phone numbers
Retrieve all phone numbers associated with the current organization.
Requires one of the following scopes: crm_actions:read, crm_actions:all, all:read, all:all
curl --request GET \
--url https://api.instantly.ai/api/v2/crm-actions/phone-numbers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.instantly.ai/api/v2/crm-actions/phone-numbers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.instantly.ai/api/v2/crm-actions/phone-numbers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.instantly.ai/api/v2/crm-actions/phone-numbers")
.header("Authorization", "Bearer <token>")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instantly.ai/api/v2/crm-actions/phone-numbers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.instantly.ai/api/v2/crm-actions/phone-numbers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"id": "01a082d0-83a4-7500-a8b4-f76909dad291",
"timestamp_created": "2026-09-08T20:58:18.404Z",
"organization_id": "01a082d0-83a4-7500-a8b4-f76a7e21b661",
"phone_number": "+15551234567",
"country": "US",
"locality": "San Francisco",
"subscription_id": "sub_1PuaE1B3VEKBA0ygDAKk7QVc",
"twilio_sid": "PN998dda028e07a49c8038b2206341d463",
"renewal_date": "2026-09-08T20:58:18.404Z",
"price": 1
}
]{
"statusCode": 401,
"error": "Unauthorized",
"message": "Missing Authorization header"
}{
"statusCode": 402,
"error": "Payment Required",
"message": "Workspace does not have an active paid plan"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Default Response
Unique identifier of the phone number record.
"01a082d0-83a4-7500-a8b4-f76909dad291"
Timestamp when the phone number record was created.
"2026-09-08T20:58:18.404Z"
Identifier of the organization that owns this phone number.
"01a082d0-83a4-7500-a8b4-f76a7e21b661"
The phone number in international E.164 format.
"+15551234567"
Country code where the phone number is registered.
"US"
City or region associated with the phone number.
"San Francisco"
Billing subscription ID linked to this phone number.
"sub_1PuaE1B3VEKBA0ygDAKk7QVc"
Twilio resource SID for the phone number.
"PN998dda028e07a49c8038b2206341d463"
Next renewal date for the phone number subscription.
"2026-09-08T20:58:18.404Z"
Monthly price for this phone number (USD).
1