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

# Search error codes

> Search error codes by code or description



## OpenAPI

````yaml GET /error-codes/search
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:
  /error-codes/search:
    get:
      tags:
        - Error Codes
      summary: Search error codes
      description: Search error codes by code or description
      operationId: searchErrorCodes
      parameters:
        - name: q
          in: query
          required: true
          description: Search query
          schema:
            type: string
      responses:
        '200':
          description: Search results retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ErrorCode'
components:
  schemas:
    ErrorCode:
      type: object
      properties:
        id:
          type: string
          format: uuid
        code:
          type: string
        description:
          type: string
        category:
          type: string
        resolution:
          type: string
        created_at:
          type: string
          format: date-time
      example:
        id: a5b6c7d8-e9f0-1234-ab56-789012345678
        code: ERR_INVALID_NUMBER
        description: The destination number is invalid or not in E.164 format
        category: validation
        resolution: >-
          Ensure the phone number includes country code and is properly
          formatted
        created_at: '2026-01-01T00:00:00Z'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````