> ## 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 modelo de GPS por ID

> Operacion: Obtener modelo de GPS por ID.



## OpenAPI

````yaml /generated/specs/operations.json get /api/v1/gps_models/get/{gps_model_id}
openapi: 3.0.0
info:
  title: Raul API - Operaciones
  description: Suscripciones, GPS, actividades, visitas y operacion tecnica.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags: []
paths:
  /api/v1/gps_models/get/{gps_model_id}:
    get:
      tags:
        - GPS Models
      summary: Obtener modelo de GPS por ID
      description: 'Operacion: Obtener modelo de GPS por ID.'
      operationId: GpsModelsController_getModelById
      parameters:
        - name: gps_model_id
          required: true
          in: path
          description: ID del modelo
          schema:
            type: number
      responses:
        '200':
          description: Modelo obtenido exitosamente
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GpsModelResponseDto'
        '404':
          description: Modelo no encontrado
      security:
        - bearerAuth: []
components:
  schemas:
    GpsModelResponseDto:
      type: object
      properties:
        gps_model_id:
          type: number
          description: ID del modelo
        gps_model_name:
          type: string
          description: Nombre del modelo
        brand_name:
          type: string
          description: Nombre de la marca
        category_name:
          type: string
          description: Nombre de la categoría
        purchase_price:
          type: number
          description: Precio de compra
        sale_price:
          type: number
          description: Precio de venta
        installation_cost:
          type: number
          description: Costo instalación - DEPRECADO
        installation_cost_venta:
          type: number
          description: Costo instalación modalidad VENTA
        installation_cost_comodato:
          type: number
          description: Costo instalación modalidad COMODATO
        monthly_rental:
          type: number
          description: Arriendo mensual
        monthly_platform:
          type: number
          description: Plataforma mensual
        monthly_service:
          type: number
          description: Servicio mensual
        tech_sheet_url:
          type: string
          description: URL ficha técnica
        internal_notes:
          type: string
          description: Notas internas
        is_active:
          type: boolean
          description: Estado activo
        accessory_ids:
          description: Accesorios compatibles
          type: array
          items:
            type: number
        updated_at:
          type: object
          description: Fecha de actualización
        created_at:
          type: object
          description: Fecha de creación
      required:
        - gps_model_id
        - gps_model_name
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````