MV sistemas Parametrização API

The Parametrização API from MV sistemas — 1 operation(s) for parametrização.

Operations 1

GET /api/v1/loincmv/bytuss/{tuss} #

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-parametriza-o-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-parametriza-o-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: para Gestão de Eventos Parametrização API
  description: ' A utilização das APIs públicas está condicionada à existência de um contrato ativo. É importante destacar que todas as URLs descritas nesta documentação devem ser acessadas mediante o uso de uma chave de cliente (x-api-key) enviada no cabeçalho da requisição. Essa chave é fornecida exclusivamente pelo responsável técnico encarregado de atender o cliente.'
  version: 1.1.5
servers:
- url: https://api.globalhealth.mv/prod/event-checkin
  description: Ambiente de PRODUÇÃO
- url: https://api.globalhealth.mv/dem/event-checkin
  description: Ambiente de HOMOLOGAÇÃO
security:
- x-api-key: []
tags:
- name: Parametrização
  description: ''
paths:
  /api/v1/loincmv/bytuss/{tuss}:
    get:
      tags:
      - Parametrização
      description: Operação responsável por consultar parametrizações com base no código TUSS, retornando os dados vinculados ao procedimento informado.
      operationId: findLoincByTussCode
      parameters:
      - name: tuss
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Loinc encontrado
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LoincMVResponseV1'
components:
  schemas:
    TussDTO:
      type: object
      properties:
        code:
          type: string
        tableCode:
          type: string
        term:
          type: string
        fabricatorReferences:
          type: string
        fabricator:
          type: string
        registerAnvisa:
          type: string
        riskClassification:
          type: string
        presentation:
          type: string
        laboratory:
          type: string
        initials:
          type: string
        detailsDescription:
          type: string
        groupName:
          type: string
        groupDescription:
          type: string
        terminology:
          type: string
        tussCode:
          type: string
        sendType:
          type: string
        fullPresentation:
          type: string
    LoincMVResponseV1:
      type: object
      properties:
        name:
          type: string
        examType:
          type: string
        loincCode:
          type: string
        activated:
          type: boolean
        mvCode:
          type: string
        scheduled:
          type: boolean
        examsType:
          type: integer
        preparation:
          type: string
        tuss_code:
          type: string
        tuss:
          $ref: '#/components/schemas/TussDTO'
        specimen:
          $ref: '#/components/schemas/SpecimenDTO'
        itemAgendamento:
          type: array
          items:
            $ref: '#/components/schemas/ItemAgendamentoDTO'
    SpecimenDTO:
      type: object
      properties:
        name:
          type: string
        activated:
          type: boolean
        variation:
          type: string
    ItemAgendamentoDTO:
      type: object
      properties:
        itemAgendamentoId:
          type: integer
        exaLabId:
          type: integer
        exaRxId:
          type: integer
        checkin:
          type: boolean
  securitySchemes:
    x-api-key:
      type: apiKey
      name: x-api-key
      in: header