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

# List SAT factor types



## OpenAPI

````yaml /openapi/nimbo_public.yml get /api/v1/sat/factor_types
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/factor_types:
    get:
      tags:
        - SAT Catalogs
      summary: List SAT factor types
      operationId: listSatFactorTypes
      responses:
        '200':
          description: SAT factor type catalog items wrapped in the `factor_types` root.
          content:
            application/json:
              schema:
                type: object
                required:
                  - factor_types
                additionalProperties: false
                properties:
                  factor_types:
                    type: array
                    items:
                      type: object
                      required:
                        - description
                        - id
                        - key
                      additionalProperties: false
                      example:
                        id: 1
                        key: '01'
                        description: Efectivo
                      properties:
                        id:
                          type:
                            - integer
                            - string
                        key:
                          type:
                            - string
                            - 'null'
                        description:
                          type:
                            - string
                            - 'null'

````