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

# Retrieve a tenant product

> Referencia detallada para GET /v1/products/{id}.

## Uso

Usalo para administrar productos del tenant, ofertas, disponibilidad o inventario empresarial asociado al catalogo SimplePay.

## Antes de llamar

| Tema             | Detalle                                           |
| ---------------- | ------------------------------------------------- |
| Metodo           | `GET`                                             |
| Ruta             | `/v1/products/{id}`                               |
| Auth             | Bearer API key del ambiente correcto.             |
| Scope            | `products:read`                                   |
| Idempotencia     | No aplica para lecturas.                          |
| Guia relacionada | [API Reference overview](/api-reference/overview) |

## Patron recomendado

* Ejecuta esta lectura desde backend cuando incluya datos privados del tenant.
* Consulta el bloque OpenAPI de esta pagina para el shape exacto de parametros, body y respuestas.

## Ejemplo minimo

```bash terminal theme={"theme":{"light":"github-light","dark":"github-dark"}}
curl -sS "https://api.simplepay.mx/v1/products/id_123" \
  -H "Authorization: Bearer $SIMPLEPAY_API_KEY"
```

## Errores a manejar

* `400` indica payload, parametros o estado invalido.
* `401` o `403` indican API key, ambiente o scopes incorrectos.
* `404` significa que el recurso no existe para ese tenant o ambiente.
* `429` y `5xx` se pueden reintentar con backoff; en writes conserva la misma idempotency key.

## Contrato OpenAPI

El playground, parametros, body y respuestas de abajo salen de `/openapi.json`. Si el contrato cambia, actualiza la spec y regenera esta pagina.


## OpenAPI

````yaml openapi.json GET /v1/products/{id}
openapi: 3.1.0
info:
  title: SimplePay API
  version: '2026-06-13'
servers:
  - url: https://api.simplepay.mx
security:
  - SimplePayApiKey: []
paths:
  /v1/products/{id}:
    get:
      summary: Retrieve a tenant product
      operationId: getProduct
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Tenant product
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
components:
  schemas:
    Product:
      type: object
      properties:
        active:
          type: boolean
        booking:
          type: object
          properties:
            bufferAfterMinutes:
              type: integer
              minimum: 0
            bufferBeforeMinutes:
              type: integer
              minimum: 0
            capacity:
              type: integer
              minimum: 1
            config:
              type: object
              additionalProperties: true
            durationMinutes:
              type: integer
              minimum: 1
            enabled:
              type: boolean
            paymentRequired:
              type: boolean
            slotIntervalMinutes:
              type: integer
              minimum: 1
            timeZone:
              type: string
        defaultPrice:
          type: object
          properties:
            amount:
              type: integer
              minimum: 0
            currency:
              type: string
              pattern: ^[a-z]{3}$
            id:
              type: string
              format: uuid
        description:
          type: string
        id:
          type: string
          format: uuid
        metadata:
          type: object
          additionalProperties: true
        name:
          type: string
        object:
          const: product
        productType:
          enum:
            - appointment
            - bundle
            - class
            - scheduled_offer
            - experience
            - package
            - rental
            - service
            - standard
            - date_range
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    SimplePayApiKey:
      type: http
      scheme: bearer

````