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

# Search Chip catalog by term

> Operacion: Search Chip catalog by term.



## OpenAPI

````yaml /generated/specs/settings.json get /api/v1/catalogs/chips/search
openapi: 3.0.0
info:
  title: Raul API - Configuraciones
  description: Catalogos, tipos, plantillas y configuraciones maestras del sistema.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags:
  - name: Catalogs
    description: Catálogos IMEI y Chip
paths:
  /api/v1/catalogs/chips/search:
    get:
      tags:
        - Catalogs
      summary: Search Chip catalog by term
      description: 'Operacion: Search Chip catalog by term.'
      operationId: CatalogsController_searchChip
      parameters:
        - name: q
          required: true
          in: query
          description: Search term (phone, ICCID, IMSI)
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ChipCatalogResponseDto'
      security:
        - bearerAuth: []
components:
  schemas:
    ChipCatalogResponseDto:
      type: object
      properties:
        id:
          type: number
          description: Unique identifier
        phone:
          type: object
          description: Phone number
        iccid:
          type: object
          description: ICCID (SIM card identifier)
        imsi:
          type: object
          description: IMSI (International Mobile Subscriber Identity)
        endpointId:
          type: object
          description: Endpoint ID in Emnify
        endpointName:
          type: object
          description: Endpoint name in Emnify
        statusId:
          type: object
          description: Status ID
        statusDescription:
          type: object
          description: Status description
        ipAddress:
          type: object
          description: IP address
        tariffId:
          type: object
          description: Tariff ID
        tariffName:
          type: object
          description: Tariff name
        serviceProfileId:
          type: object
          description: Service profile ID
        simBatchId:
          type: object
          description: SIM batch ID
        activationDate:
          type: object
          description: Activation date
        lastConnection:
          type: object
          description: Last connection date
        operator:
          type: object
          description: Operator name
        networkType:
          type: object
          description: Network type (2G, 3G, 4G, etc.)
        endpointInfoUpdatedAt:
          type: object
          description: Endpoint info last update
        syncedAt:
          format: date-time
          type: string
          description: Last sync date
        createdAt:
          format: date-time
          type: string
          description: Creation date
        updatedAt:
          format: date-time
          type: string
          description: Last update date
      required:
        - id
        - syncedAt
        - createdAt
        - updatedAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````