> ## 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.

# Get number lookup by phone

> Retrieve lookup information for a specific phone number



## OpenAPI

````yaml GET /numbers/lookup/{phone}
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/{phone}:
    get:
      tags:
        - Number Lookup
      summary: Get number lookup by phone
      description: Retrieve lookup information for a specific phone number
      operationId: getNumberLookup
      parameters:
        - name: phone
          in: path
          required: true
          description: Phone number in E.164 format
          schema:
            type: string
      responses:
        '200':
          description: Number lookup retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NumberLookup'
        '404':
          description: Lookup not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
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'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
      example:
        error: Invalid request parameters
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````