Meta
Get number (Meta details)
Returns the number + all Meta info when it is an official-API number: a nested meta block (phone / profile / waba, camelCase) with quality, messaging-limit tier, verification status, business profile and WABA data, plus health. Served from cache by default; pass ?refresh=1 to fetch live from the Meta Graph and persist. Non-Meta numbers return meta: null. (The same route accepts DELETE to remove; use GET /api/v1/numbers/:id/status for a lightweight state-only poll.)
GET
/
v1
/
numbers
/
{id}
Get number (Meta details)
curl --request GET \
--url https://pilotstatus.com.br/v1/numbers/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://pilotstatus.com.br/v1/numbers/{id}"
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://pilotstatus.com.br/v1/numbers/{id}', 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://pilotstatus.com.br/v1/numbers/{id}",
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://pilotstatus.com.br/v1/numbers/{id}"
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://pilotstatus.com.br/v1/numbers/{id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/v1/numbers/{id}")
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{
"id": "num_01HZX...",
"number": "+5511999999999",
"name": "Atendimento",
"provider": "META",
"state": "OPEN",
"isFullyConnected": true,
"settings": {
"historyImportEnabled": false,
"webhookHistoricalMessages": false,
"ignoreNewsletters": false,
"alwaysOnline": null,
"rejectCall": null,
"msgRejectCall": null,
"readMessages": null,
"ignoreGroups": null,
"ignoreStatus": null,
"appliesTo": {
"history": "all",
"advanced": "none"
}
},
"health": {
"qualityRating": "GREEN",
"messagingLimitTier": "TIER_2K",
"metaStatus": "CONNECTED",
"sendable": true
},
"meta": {
"fetchedAt": "2026-06-30T08:55:00.000Z",
"phone": {
"displayPhoneNumber": "+55 11 99999-9999",
"verifiedName": "Minha Empresa",
"qualityRating": "GREEN",
"status": "CONNECTED",
"codeVerificationStatus": "VERIFIED",
"nameStatus": "APPROVED",
"platformType": "CLOUD_API",
"throughput": {
"level": "STANDARD"
},
"messagingLimitTier": "TIER_2K",
"businessManagerMessagingLimit": "TIER_2K",
"accountMode": "LIVE"
},
"profile": {
"about": "Atendimento oficial",
"email": "contato@empresa.com",
"websites": [
"https://empresa.com"
],
"vertical": "PROF_SERVICES"
},
"waba": {
"id": "1234567890",
"name": "Empresa WABA",
"currency": "BRL",
"businessVerificationStatus": "verified",
"accountReviewStatus": "APPROVED",
"ownershipType": "CLIENT"
},
"errors": {}
}
}{
"error": "Validation error"
}{
"error": "Unauthorized"
}{
"error": "Too many requests"
}Was this page helpful?
⌘I
Get number (Meta details)
curl --request GET \
--url https://pilotstatus.com.br/v1/numbers/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://pilotstatus.com.br/v1/numbers/{id}"
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://pilotstatus.com.br/v1/numbers/{id}', 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://pilotstatus.com.br/v1/numbers/{id}",
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://pilotstatus.com.br/v1/numbers/{id}"
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://pilotstatus.com.br/v1/numbers/{id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/v1/numbers/{id}")
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{
"id": "num_01HZX...",
"number": "+5511999999999",
"name": "Atendimento",
"provider": "META",
"state": "OPEN",
"isFullyConnected": true,
"settings": {
"historyImportEnabled": false,
"webhookHistoricalMessages": false,
"ignoreNewsletters": false,
"alwaysOnline": null,
"rejectCall": null,
"msgRejectCall": null,
"readMessages": null,
"ignoreGroups": null,
"ignoreStatus": null,
"appliesTo": {
"history": "all",
"advanced": "none"
}
},
"health": {
"qualityRating": "GREEN",
"messagingLimitTier": "TIER_2K",
"metaStatus": "CONNECTED",
"sendable": true
},
"meta": {
"fetchedAt": "2026-06-30T08:55:00.000Z",
"phone": {
"displayPhoneNumber": "+55 11 99999-9999",
"verifiedName": "Minha Empresa",
"qualityRating": "GREEN",
"status": "CONNECTED",
"codeVerificationStatus": "VERIFIED",
"nameStatus": "APPROVED",
"platformType": "CLOUD_API",
"throughput": {
"level": "STANDARD"
},
"messagingLimitTier": "TIER_2K",
"businessManagerMessagingLimit": "TIER_2K",
"accountMode": "LIVE"
},
"profile": {
"about": "Atendimento oficial",
"email": "contato@empresa.com",
"websites": [
"https://empresa.com"
],
"vertical": "PROF_SERVICES"
},
"waba": {
"id": "1234567890",
"name": "Empresa WABA",
"currency": "BRL",
"businessVerificationStatus": "verified",
"accountReviewStatus": "APPROVED",
"ownershipType": "CLIENT"
},
"errors": {}
}
}{
"error": "Validation error"
}{
"error": "Unauthorized"
}{
"error": "Too many requests"
}