SmsPort Docs / WhatsApp

API / Senders

List Senders

Fetch all connected/synced sender numbers available for your workspace.

All IDs, phone numbers, and names below are sample placeholders for documentation only.

Endpoint

http
GET /api/whatsapp/phone-numbers

Base URL

http
https://api.smsport.in/api

Copy cURL

bash
curl -X GET "https://api.smsport.in/api/whatsapp/phone-numbers" \
  -H "Authorization: Bearer <ACCESS_TOKEN>"

Response (200)

json
{
  "phoneNumbers": [
    {
      "id": "<PHONE_NUMBER_ID>",
      "displayPhoneNumber": "<SENDER_DISPLAY_PHONE>",
      "metaPhoneNumberId": "<META_PHONE_NUMBER_ID>",
      "verifiedName": "<SENDER_VERIFIED_NAME>",
      "status": "connected",
      "qualityRating": "GREEN",
      "registrationStatus": "registered",
      "provisioningStage": "sender_registered",
      "lastSyncedAt": "2026-05-16T08:15:00.000Z"
    }
  ]
}

If no sender appears, run sync fromUpdate Senderor useSenders Flow Guide. Full catalog:API Referencethen retry this list call.