MV sistemas Horários Disponíveis API

The Horários Disponíveis API from MV sistemas — 1 operation(s) for horários disponíveis.

Operations 1

GET /available-appointments Consultar horários disponíveis.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mv-sistemas-hor-rios-dispon-veis-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mv-sistemas-hor-rios-dispon-veis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Clinic Agenda Horários Disponíveis API
  version: 1.0.0
  description: Esta API permite consultar as agendas disponíveis no sistema Clinic, retornando informações sobre dias e horários que possuem disponibilidade para agendamento.
servers:
- url: https://api.globalhealth.mv/available-appointments/api
  description: Ambiente de PRODUÇÃO
- url: https://api.globalhealth.mv/hml/available-appointments/api
  description: Ambiente de HOMOLOGAÇÃO
- url: https://api.globalhealth.mv/qa/available-appointments/api
  description: Ambiente de QA
security:
- x-api-key: []
tags:
- name: Horários Disponíveis
paths:
  /available-appointments:
    get:
      tags:
      - Horários Disponíveis
      summary: Consultar horários disponíveis.
      description: Endpoint utilizado para consultar os horários disponíveis, sem a necessidade de filtrar por médico ou especialidade. Ideal para obter uma visão geral das opções de agendamento no sistema.
      parameters:
      - name: employeeId
        in: query
        schema:
          type: integer
          format: int64
        description: ID do médico
      - name: termCboIds
        in: query
        schema:
          type: string
        description: Lista de IDs de especialidades, separados por vírgula
      - name: teleconsultation
        in: query
        schema:
          type: boolean
        description: ID do médico
      - name: date
        in: query
        schema:
          type: string
          example: 30-01-2030
        description: Data a ser consultada
      - name: page
        in: query
        schema:
          type: integer
        description: Número da página da consulta
      - name: size
        in: query
        schema:
          type: integer
        description: Quantidade de registros por página
      responses:
        '200':
          description: Consulta realizada com sucesso.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PageEmployeeAppointment'
        '400':
          description: Requisição inválida. Verifique os dados enviados.
        '500':
          description: Erro interno do servidor.
components:
  schemas:
    Employee:
      type: object
      properties:
        name:
          type: string
        specialties:
          type: array
          items:
            type: string
    NearestAvailableAppointment:
      type: object
      properties:
        clinicId:
          type: integer
          format: int64
        employeeId:
          type: integer
          format: int64
        matchSearchDate:
          type: boolean
        nextAvailableDate:
          type: string
        availableAppointmens:
          type: array
          items:
            $ref: '#/components/schemas/AvailableAppointment'
    PageEmployeeAppointment:
      type: object
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/EmployeeAppointment'
        totalElements:
          type: integer
        number:
          type: integer
        size:
          type: integer
    EmployeeAppointment:
      type: object
      properties:
        employee:
          $ref: '#/components/schemas/Employee'
        nearestAvailableAppointment:
          $ref: '#/components/schemas/NearestAvailableAppointment'
    AvailableAppointment:
      type: object
      properties:
        startTime:
          type: string
        date:
          type: string
        telehealthAppointment:
          type: boolean
  securitySchemes:
    x-api-key:
      type: apiKey
      name: x-api-key
      in: header