University of Campinas Authorization API

Role and permission metadata backing the EDAT Superset dashboards.

Operations 1

GET /superset/public/papeis List EDAT Superset roles #

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-authorization-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-authorization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unicamp EDAT Data Platform Authorization 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: Authorization
  description: Role and permission metadata backing the EDAT Superset dashboards.
paths:
  /superset/public/papeis:
    get:
      tags:
      - Authorization
      summary: List EDAT Superset roles
      operationId: listSupersetRoles
      description: 'Returns the role/permission catalog behind the EDAT decision-support dashboards - institutional evaluation indicators, budget lines, staffing, student permanence and similar. Verified live 2026-09-01: HTTP 200, application/json, 364 objects, 55,697 bytes. No credential was sent.'
      security: []
      responses:
        '200':
          description: Array of role objects.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Papel'
components:
  schemas:
    Papel:
      type: object
      description: A role or permission exposed to the EDAT dashboards.
      properties:
        name:
          type: string
          example: ai.permissao.administrador
        description:
          type: string
          example: Permissao de Administrador do Sistema de Avaliacao Interna
        attributes:
          type: object
          description: Free-form attribute bag; `alias` is the only key observed.
          additionalProperties: true
  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.