> ## Documentation Index
> Fetch the complete documentation index at: https://docs.raul.ugps.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get chip by phone number

> Get chip details by exact phone number match.

    This endpoint looks up a specific chip by its phone number (MSISDN).

    **Notes:**
    - Performs exact match (with normalization of + prefix)
    - Returns 200 even if chip is not found (check found field)
    - Minimum 10 digits required for valid phone number



## OpenAPI

````yaml /generated/specs/diagnostics.json get /api/v1/catalog/chips/phone/{phone_number}
openapi: 3.0.0
info:
  title: Raul API - Diagnostico
  description: Health, consumo, conectividad, SIMs, webhooks fallidos y estados tecnicos.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags: []
paths:
  /api/v1/catalog/chips/phone/{phone_number}:
    get:
      tags:
        - Chip Catalog
      summary: Get chip by phone number
      description: |-
        Get chip details by exact phone number match.

            This endpoint looks up a specific chip by its phone number (MSISDN).

            **Notes:**
            - Performs exact match (with normalization of + prefix)
            - Returns 200 even if chip is not found (check found field)
            - Minimum 10 digits required for valid phone number
      operationId: ChipCatalogController_getChipByPhone
      parameters:
        - name: phone_number
          required: true
          in: path
          description: Phone number (MSISDN)
          schema:
            example: '423663922670587'
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChipByPhoneResponseDto'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmnifyErrorDto'
        '500':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmnifyErrorDto'
      security:
        - bearerAuth: []
components:
  schemas:
    ChipByPhoneResponseDto:
      type: object
      properties:
        found:
          type: boolean
        data:
          $ref: '#/components/schemas/ChipCatalogItemDto'
        phone_number:
          type: string
      required:
        - found
        - phone_number
    EmnifyErrorDto:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        details:
          type: string
      required:
        - error
        - message
    ChipCatalogItemDto:
      type: object
      properties:
        sim_id:
          type: number
        phone_number:
          type: string
        iccid:
          type: string
        status_id:
          type: object
        status_description:
          type: object
        endpoint_id:
          type: object
        last_connection:
          type: object
        operator:
          type: object
        network_type:
          type: object
      required:
        - sim_id
        - phone_number
        - iccid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````