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

# Obtener SIMs enriquecidos con cursor pagination (optimizado para grandes datasets)

> Usa cursor-based pagination para mejor performance con 10k+ registros. El cursor es el iddeta del ultimo registro de la pagina anterior.



## OpenAPI

````yaml /generated/specs/diagnostics.json get /api/v1/sim-chip-link/enriched/cursor
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/sim-chip-link/enriched/cursor:
    get:
      tags:
        - SIMs
      summary: >-
        Obtener SIMs enriquecidos con cursor pagination (optimizado para grandes
        datasets)
      description: >-
        Usa cursor-based pagination para mejor performance con 10k+ registros.
        El cursor es el iddeta del ultimo registro de la pagina anterior.
      operationId: SimsController_getEnrichedSimsCursorPaginated
      parameters:
        - name: cursor
          required: false
          in: query
          description: ID del ultimo registro de la pagina anterior
          schema:
            minimum: 1
            type: number
        - name: limit
          required: false
          in: query
          description: 'Cantidad de registros por pagina (default: 50, max: 100)'
          schema:
            minimum: 1
            maximum: 100
            type: number
        - name: search
          required: false
          in: query
          description: Buscar por telefono, operador o plan
          schema:
            type: string
        - name: operator_id
          required: false
          in: query
          description: Filtrar por ID de operador
          schema:
            minimum: 1
            type: number
        - name: plan_id
          required: false
          in: query
          description: Filtrar por ID de plan
          schema:
            minimum: 1
            type: number
        - name: source
          required: false
          in: query
          description: Filtrar por source (manual, chip_catalog_auto)
          schema:
            type: string
      responses:
        '200':
          description: Lista de SIMs enriquecidos con cursor pagination
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CursorPaginatedEnrichedSimResponseDto'
      security:
        - bearerAuth: []
components:
  schemas:
    CursorPaginatedEnrichedSimResponseDto:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EnrichedSimResponseDto'
        nextCursor:
          type: object
          nullable: true
        hasMore:
          type: boolean
        total:
          type: number
      required:
        - data
        - nextCursor
        - hasMore
    EnrichedSimResponseDto:
      type: object
      properties:
        iddeta:
          type: number
        number_phone:
          type: string
        plan:
          type: string
        operator_name:
          type: string
        source:
          type: string
        gps_imei:
          type: string
        gps_name:
          type: string
        client_name:
          type: string
      required:
        - iddeta
        - number_phone
        - plan
        - operator_name
        - source
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````