University of Campinas Support API

Support desk system registry.

Operations 1

GET /suporte/public/sistemas List systems registered with the EDAT support desk #

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/unicamp-support-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

unicamp-support-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unicamp EDAT Data Platform Support API
  version: '1.0'
  description: Institution-operated API gateway for the Escritorio de Dados e Apoio a Tomada de Decisao (EDAT) of the Universidade Estadual de Campinas (Unicamp).
  contact:
    name: Escritorio de Dados e Apoio a Tomada de Decisao (EDAT) - Unicamp
    url: https://www.dados.unicamp.br/fale-com-o-edat/
  x-generated: '2026-09-01'
  x-method: probed
  x-source: https://api.dados.unicamp.br/superset/public/papeis (200, application/json, 55,697 bytes); https://api.dados.unicamp.br/suporte/public/sistemas (401); https://catalogo.dados.unicamp.br/env.js (route names + DEFAULT_BASE_URL/DEFAULT_AUTH_URL). Reconstructed by API Evangelist on 2026-09-01. Unicamp publishes no OpenAPI for this gateway.
  x-operator: institution
servers:
- url: https://api.dados.unicamp.br
  description: EDAT API gateway (Kong), unicamp.br registrable domain
security:
- edatOidc: []
tags:
- name: Support
  description: Support desk system registry.
paths:
  /suporte/public/sistemas:
    get:
      tags:
      - Support
      summary: List systems registered with the EDAT support desk
      operationId: listSupportSystems
      description: 'Verified live 2026-09-01: HTTP 401 {"message":"Unauthorized"} with no credential, so the route exists and is gated despite the "public" path segment. The success response shape is unknown and is not described here.'
      responses:
        '401':
          description: No or invalid bearer token.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        message:
          type: string
          example: Unauthorized
  securitySchemes:
    edatOidc:
      type: openIdConnect
      openIdConnectUrl: https://seguranca.dados.unicamp.br/realms/edat/.well-known/openid-configuration
      description: Unicamp-operated Keycloak realm `edat`. Declared as DEFAULT_AUTH_URL in the catalogo.dados.unicamp.br runtime configuration (/env.js) and confirmed by the 401 above.