> ## Documentation Index
> Fetch the complete documentation index at: https://help.eazybe.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List connected phone numbers

> Lists every WhatsApp Business Account and phone number connected to the
authenticated Eazybe organization. Use the returned IDs in all other
Meta wrapper routes.


<Tip>Start here. This request verifies your token and returns the `wabaId` and `phoneNumberId` values used by the rest of the API.</Tip>


## OpenAPI

````yaml /api-reference/meta/openapi.yaml get /meta/phone-numbers
openapi: 3.1.0
info:
  title: Eazybe Meta API Documentation
  version: 1.0.0
  description: |
    A single authenticated Eazybe REST surface over WhatsApp Business Cloud API.
    The wrapper uses the Meta credentials captured when a WABA is connected to
    Eazybe, so callers never send Meta access tokens directly.
servers:
  - url: https://cerberus.eazybe.com/staging/api/v2
    description: Eazybe staging API v2.
security:
  - bearerAuth: []
tags:
  - name: Phone numbers
    description: Discover connected WABAs and phone-number IDs.
  - name: Messaging
    description: Send WhatsApp messages and update message state.
  - name: Templates
    description: Manage WhatsApp message templates.
  - name: Media
    description: Upload, inspect, and delete WhatsApp media.
  - name: Webhooks
    description: Manage WABA webhook subscriptions.
  - name: Analytics
    description: Read messaging, conversation, pricing, and template analytics.
  - name: Profiles and settings
    description: Manage business profiles and phone-number settings.
  - name: Automation
    description: Configure welcome messages, ice-breakers, and commands.
  - name: QR codes
    description: Manage click-to-chat QR codes.
  - name: Flows
    description: Manage the WhatsApp Flows lifecycle.
  - name: Number administration
    description: Register numbers, manage PINs, and synchronize coexistence data.
  - name: Block list
    description: List, block, and unblock WhatsApp users.
paths:
  /meta/phone-numbers:
    get:
      tags:
        - Phone numbers
      summary: List connected phone numbers
      description: |
        Lists every WhatsApp Business Account and phone number connected to the
        authenticated Eazybe organization. Use the returned IDs in all other
        Meta wrapper routes.
      operationId: getPhoneNumbers
      responses:
        '200':
          description: >-
            Phone numbers fetched (may include per-WABA failures)


            **Failure responses**


            | **Status** | **Meaning** | **Action** |

            | --- | --- | --- |

            | `401` | Missing, invalid, or expired bearer token |
            Re-authenticate |

            | `400` | Token resolved to a user with no organization | Fix the
            user's org assignment |

            | `404` | No connected WABA account found for this organization |
            Complete WABA embedded signup |
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                  - data
                properties:
                  status:
                    type: boolean
                  message:
                    type: string
                  data:
                    type: object
                    required:
                      - total_wabas
                      - successful
                      - failed
                      - accounts
                    properties:
                      total_wabas:
                        type: integer
                      successful:
                        type: integer
                      failed:
                        type: integer
                      accounts:
                        type: array
                        items:
                          type: object
                          required:
                            - waba_id
                            - status
                            - phone_numbers
                          properties:
                            waba_id:
                              type: string
                            status:
                              type: boolean
                            phone_numbers:
                              type: array
                              items:
                                type: object
                                required:
                                  - id
                                  - display_phone_number
                                  - verified_name
                                  - quality_rating
                                  - code_verification_status
                                  - status
                                properties:
                                  id:
                                    type: string
                                  display_phone_number:
                                    type: string
                                  verified_name:
                                    type: string
                                  quality_rating:
                                    type: string
                                  code_verification_status:
                                    type: string
                                  status:
                                    type: string
              example:
                status: true
                message: Meta phone numbers fetched successfully
                data:
                  total_wabas: 2
                  successful: 1
                  failed: 1
                  accounts:
                    - waba_id: '1029384756'
                      status: true
                      phone_numbers:
                        - id: '5647382910'
                          display_phone_number: +91 99000 00000
                          verified_name: Acme Support
                          quality_rating: GREEN
                          code_verification_status: VERIFIED
                          status: CONNECTED
                    - waba_id: '2938475610'
                      status: false
                      phone_numbers: []
                      error: 'Error validating access token: Session has expired.'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Eazybe token
      description: |
        Eazybe bearer token. The token resolves the caller's organization and
        must be kept on the server.

````