Get number status
Live snapshot of a connected number straight from Meta: the phone-number node (display number, display name + approval, quality rating, messaging-limit tier, throughput, official-business badge, connection status, health_status) and its owning WhatsApp Business Account (name, business verification, timezone, health_status). Fetched live because Meta updates quality/tier/name/health over time; the call also refreshes the cached values shown on the connection card.
API key authentication - use your Zernio API key as a Bearer token
In: header
Query Parameters
WhatsApp social account ID
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.whatsappphonenumbers.getWhatsAppNumberInfo({ query: { accountId: 'account_abc123', },});console.log(data);{
"phone": {
"display_phone_number": "string",
"verified_name": "string",
"name_status": "string",
"quality_rating": "string",
"messaging_limit_tier": "string",
"throughput": {
"level": "string"
},
"status": "string",
"is_official_business_account": true,
"platform_type": "string",
"health_status": {}
},
"waba": {
"name": "string",
"business_verification_status": "string",
"timezone_id": "string",
"health_status": {}
}
}{
"error": "Unauthorized"
}Get a call recording GET
Resolves a fresh, playable MP3 URL for the call's recording. Provider-signed recording URLs expire ~10 minutes after signing, so the `recordingUrl` stored on the call is usually stale by the time it is played; this endpoint re-signs on demand. Default responds `302 Found` redirecting to the fresh URL (point an `<audio>` element or a link straight at this endpoint); pass `as=json` to receive `{ url }` instead.
List flows GET
List all WhatsApp Flows for the Business Account (WABA) associated with the given account.