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

# Batch lookup phone numbers

> Lookup information for multiple phone numbers



## OpenAPI

````yaml POST /numbers/lookup/batch
openapi: 3.0.3
info:
  title: NativeMessage API
  version: 1.0.0
  description: Complete API documentation for NativeMessage platform
  contact:
    name: NativeMessage Support
    email: support@nativemessage.com
servers:
  - url: https://api-message.nativehub.live/api/v1
    description: Production server
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /numbers/lookup/batch:
    post:
      tags:
        - Number Lookup
      summary: Batch lookup phone numbers
      description: Lookup information for multiple phone numbers
      operationId: batchLookupNumbers
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - numbers
              properties:
                numbers:
                  type: array
                  items:
                    type: string
              example:
                numbers:
                  - '+8801712345678'
                  - '+8801812345679'
                  - '+8801912345680'
      responses:
        '200':
          description: Batch lookup successful
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NumberLookup'
components:
  schemas:
    NumberLookup:
      type: object
      properties:
        id:
          type: string
          format: uuid
        phone:
          type: string
        country_code:
          type: string
        country_name:
          type: string
        carrier:
          type: string
        is_ported:
          type: boolean
        is_mobile:
          type: boolean
        mcc:
          type: string
        mnc:
          type: string
        created_at:
          type: string
          format: date-time
      example:
        id: d6e7f8a9-b0c1-2345-de67-890123456789
        phone: '+8801712345678'
        country_code: BD
        country_name: Bangladesh
        carrier: Grameenphone
        is_ported: false
        is_mobile: true
        mcc: '470'
        mnc: '01'
        created_at: '2026-02-14T10:30:00Z'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````