> ## 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 rates or fees



## OpenAPI

````yaml /openapi/nimbo_public.yml get /api/v1/sat/rates_or_fees
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/rates_or_fees:
    get:
      tags:
        - SAT Catalogs
      summary: List SAT rates or fees
      operationId: listSatRatesOrFees
      responses:
        '200':
          description: SAT rates or fees wrapped in the `rates_or_fees` root.
          content:
            application/json:
              schema:
                type: object
                required:
                  - rates_or_fees
                additionalProperties: false
                properties:
                  rates_or_fees:
                    type: array
                    items:
                      type: object
                      required:
                        - factor
                        - id
                        - tax
                        - tax_type
                        - tax_type_description
                        - value
                      additionalProperties: false
                      example:
                        id: 1
                        value: '0.160000'
                        tax: IVA
                        factor: Tasa
                        tax_type: '002'
                        tax_type_description: IVA
                      properties:
                        id:
                          type: integer
                        value:
                          type:
                            - number
                            - string
                        tax:
                          type:
                            - string
                            - 'null'
                        factor:
                          type:
                            - string
                            - 'null'
                        tax_type:
                          type:
                            - string
                            - 'null'
                        tax_type_description:
                          type:
                            - string
                            - 'null'

````