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



## OpenAPI

````yaml /openapi/nimbo_public.yml get /api/v1/specialties
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/specialties:
    get:
      tags:
        - Catalogs
      summary: List specialties
      operationId: listSpecialties
      responses:
        '200':
          description: Specialties with the response root.
          content:
            application/json:
              schema:
                type: object
                required:
                  - specialties
                additionalProperties: false
                properties:
                  specialties:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - name_en
                        - name_es
                      additionalProperties: false
                      example:
                        id: 3001
                        name_en: General Medicine
                        name_es: Medicina General
                      properties:
                        id:
                          type: integer
                        name_en:
                          type:
                            - string
                            - 'null'
                        name_es:
                          type:
                            - string
                            - 'null'

````