MV sistemas Convênios API

The Convênios API from MV sistemas — 2 operation(s) for convênios.

Operations 3

POST /v1/insurances Criar ou alterar dados de convênios.
GET /v1/insurances Consultar convênios.
GET /v1/health-plan Buscar planos de saúde (convênios)

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-conv-nios-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-conv-nios-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mv Sistemas Convênios API
  version: 1.0.0
  description: 'Operations tagged Convênios across 2 of this provider''s published API definitions: mv-sistemas-clinic-connect-openapi.yaml, mv-sistemas-regulacao-openapi.yaml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.globalhealth.mv/clinic-connect/api/
  description: Ambiente de PRODUÇÃO
- url: https://api.globalhealth.mv/hml/clinic-connect/api/
  description: Ambiente de HOMOLOGAÇÃO
- url: https://api.globalhealth.mv/qa/clinic-connect/api/
  description: Ambiente de QA
- url: https://api.globalhealth.mv/clinic-connect/api
  description: Ambiente de PRODUÇÃO
- url: https://api.globalhealth.mv/hml/clinic-connect/api
  description: Ambiente de HOMOLOGAÇÃO
- url: https://api.globalhealth.mv/qa/clinic-connect/api
  description: Ambiente de QA
security:
- x-api-key: []
tags:
- name: Convênios
paths:
  /v1/insurances:
    post:
      summary: Criar ou alterar dados de convênios.
      description: Endpoint responsável por criar ou atualizar convênios, permitindo o gerenciamento centralizado das operadoras de saúde vinculadas ao sistema.
      parameters: []
      tags:
      - Convênios
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectInsuranceDTO'
      responses:
        '201':
          description: Convênio criado com sucesso
        '400':
          description: Requisição inválida
        '500':
          description: Erro interno do servidor
    get:
      summary: Consultar convênios.
      description: Endpoint que retorna uma lista de convênios com base nos filtros informados, facilitando a localização e o gerenciamento das operadoras cadastradas.
      tags:
      - Convênios
      parameters:
      - name: id
        in: query
        schema:
          type: integer
          format: int64
        description: ID do Clinic
      - name: externalId
        in: query
        required: false
        schema:
          type: string
        description: ID externo
      - name: subscriptionId
        in: query
        required: true
        schema:
          type: string
        description: ID da conta Clinic Connect
      responses:
        '200':
          description: Lista de seguros retornada com sucesso
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ConnectInsuranceDTO'
        '400':
          description: Parâmetros de filtro inválidos
        '500':
          description: Erro interno do servidor
    servers:
    - url: https://api.globalhealth.mv/clinic-connect/api/
      description: Ambiente de PRODUÇÃO
    - url: https://api.globalhealth.mv/hml/clinic-connect/api/
      description: Ambiente de HOMOLOGAÇÃO
    - url: https://api.globalhealth.mv/qa/clinic-connect/api/
      description: Ambiente de QA
  /v1/health-plan:
    get:
      tags:
      - Convênios
      summary: Buscar planos de saúde (convênios)
      description: Retorna uma lista paginada de convênios, com filtros opcionais por nome e código ANS.
      parameters:
      - name: name
        in: query
        description: Nome do plano ou operadora
        schema:
          type: string
      - name: ansCode
        in: query
        description: Código de registro na ANS
        schema:
          type: string
      - name: page
        in: query
        description: Página atual da listagem
        schema:
          type: integer
      - name: size
        in: query
        description: Quantidade de registros por página
        schema:
          type: integer
      responses:
        '200':
          description: Operação realizada com sucesso.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HealthPlanDTO_2'
        '401':
          description: Operação não autorizada.
        '403':
          description: Proibido.
        '404':
          description: Não encontrado.
        '500':
          description: Erro interno.
    servers:
    - url: https://api.globalhealth.mv/clinic-connect/api
      description: Ambiente de PRODUÇÃO
    - url: https://api.globalhealth.mv/hml/clinic-connect/api
      description: Ambiente de HOMOLOGAÇÃO
    - url: https://api.globalhealth.mv/qa/clinic-connect/api
      description: Ambiente de QA
components:
  schemas:
    ConnectInsuranceDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        subscription:
          $ref: '#/components/schemas/SimpleIdDTO'
        name:
          type: string
        tissVersion:
          $ref: '#/components/schemas/TissVersion'
        endpointAuthorization:
          type: string
        healthPlan:
          $ref: '#/components/schemas/HealthPlanDTO'
        lack:
          type: integer
          format: int32
        activated:
          type: boolean
        healthAutomation:
          type: boolean
        providerGuideIndexNumber:
          type: integer
          format: int64
        healthAutomationUnitCnes:
          type: string
        onlineSchedulingPresencialAppointment:
          type: boolean
          default: false
        onlineSchedulingTeleHealth:
          type: boolean
          default: false
        maxExamsPerGuide:
          type: integer
          format: int32
        healthPlanTypes:
          type: array
          items:
            $ref: '#/components/schemas/InsuranceHealthPlanTypeDTO'
        accessRule:
          type: string
        externalId:
          type: integer
          format: int64
    SimpleIdDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        externalId:
          type: string
    TissVersion:
      type: string
      description: Versão TISS
      enum:
      - V3_03_03
      - V3_05_00
      - V4_00_00
      - V4_00_01
      - V4_01_00
      example: V4_01_00
    HealthPlanDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
          example: Unimed Prata
        ansCode:
          type: string
          example: '185657'
        active:
          type: boolean
          default: true
        lack:
          type: string
        insuranceType:
          type: string
          enum:
          - ANS
          - PRIVATE
          - SUS
          - ORIGIN
          example: ANS
        picture:
          type: string
        maxExamsPerGuide:
          type: integer
          format: int32
    InsuranceHealthPlanTypeDTO:
      type: object
      required:
      - name
      - ansCode
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        ansCode:
          type: string
    HealthPlanDTO_2:
      type: object
      description: Dados do convênio (plano de saúde) vinculado à linha de regulação.
      properties:
        id:
          type: integer
        name:
          type: string
          example: Unimed Prata
        ansCode:
          type: string
          example: '185657'
        active:
          type: boolean
          example: true
        insuranceType:
          type: string
          example: ANS
        picture:
          type: string
        maxExamsPerGuide:
          type: integer
  securitySchemes:
    x-api-key:
      type: apiKey
      name: x-api-key
      in: header
x-refined-from:
- mv-sistemas-clinic-connect-openapi.yaml
- mv-sistemas-regulacao-openapi.yaml