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

# List number lookups

> Retrieve paginated list of previous number lookups



## OpenAPI

````yaml GET /numbers/lookup
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:
    get:
      tags:
        - Number Lookup
      summary: List number lookups
      description: Retrieve paginated list of previous number lookups
      operationId: listNumberLookups
      parameters:
        - $ref: '#/components/parameters/PageParam'
        - $ref: '#/components/parameters/PerPageParam'
      responses:
        '200':
          description: Number lookups retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedNumberLookups'
components:
  parameters:
    PageParam:
      name: page
      in: query
      description: Page number (default 1)
      schema:
        type: integer
        default: 1
        minimum: 1
    PerPageParam:
      name: per_page
      in: query
      description: Items per page (default 20, max 100)
      schema:
        type: integer
        default: 20
        minimum: 1
        maximum: 100
  schemas:
    PaginatedNumberLookups:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/NumberLookup'
        total:
          type: integer
        page:
          type: integer
        per_page:
          type: integer
    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

````