> ## Documentation Index
> Fetch the complete documentation index at: https://dev.nimbo-x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search SAT product and service keys

> Returns product and service keys in ascending ID order, including timestamps in the America/Monterrey time zone.



## OpenAPI

````yaml /openapi/nimbo_public.yml get /api/v1/sat/key_of_products_and_services
openapi: 3.1.0
info:
  title: Nimbo catalogs and sites
  version: 0.1.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; not a live API host
security: []
tags:
  - name: Countries
  - name: Catalogs
  - name: SAT Catalogs
  - name: Sites
  - name: Public Portals
  - name: Telehealth
paths:
  /api/v1/sat/key_of_products_and_services:
    get:
      tags:
        - SAT Catalogs
      summary: Search SAT product and service keys
      description: >-
        Returns product and service keys in ascending ID order, including
        timestamps in the America/Monterrey time zone.
      operationId: listSatKeyOfProductsAndServices
      parameters:
        - name: query
          in: query
          required: false
          description: >-
            Literal, case-insensitive substring matched against the key or
            unaccented description. SQL wildcard characters such as `%` and `_`
            are treated literally. Omitted or blank input uses `hospital`.
          schema:
            type: string
      responses:
        '200':
          description: >-
            SAT product and service keys wrapped in the
            `key_of_products_and_services` root.
          content:
            application/json:
              schema:
                type: object
                required:
                  - key_of_products_and_services
                additionalProperties: false
                properties:
                  key_of_products_and_services:
                    type: array
                    items:
                      type: object
                      required:
                        - active
                        - created_at
                        - description
                        - id
                        - key
                        - updated_at
                      additionalProperties: false
                      example:
                        id: 9501
                        key: '86121600'
                        description: Servicios hospitalarios de emergencia
                        active: true
                        created_at: '2022-03-01T20:46:11.467-06:00'
                        updated_at: '2022-03-01T20:46:11.467-06:00'
                      properties:
                        id:
                          type: integer
                        key:
                          type:
                            - string
                            - 'null'
                        description:
                          type:
                            - string
                            - 'null'
                        active:
                          type:
                            - boolean
                            - 'null'
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time

````