Gadjah Mada University Discovery API

RFC 8414 & OIDC Discovery

Operations 3

GET /.well-known/jwks.json JSON Web Key Set (JWKS) #
GET /.well-known/oauth-authorization-server OAuth 2.0 Authorization Server Metadata (RFC 8414) #
GET /.well-known/openid-configuration OpenID Connect Discovery #

Documentation

Specifications

Schemas & Data

Other Resources

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/gadjah-mada-university-discovery-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

gadjah-mada-university-discovery-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Layanan OAuth 2.0 / OIDC Authorization Server untuk mengakses UGM API.
  title: UGM ID Discovery API
  version: '2.0'
servers:
- description: Production Server
  url: https://oauth.simaster.ugm.ac.id
- description: Development Server
  url: https://oauth.dev.ugm.ac.id
tags:
- description: RFC 8414 & OIDC Discovery
  name: Discovery
paths:
  /.well-known/jwks.json:
    get:
      description: Public keys untuk verifikasi JWT RS256. Di-cache 5 menit.
      operationId: getJwks
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  keys:
                    items:
                      properties:
                        alg:
                          example: RS256
                          type: string
                        e:
                          type: string
                        kid:
                          type: string
                        kty:
                          example: RSA
                          type: string
                        n:
                          type: string
                        use:
                          example: sig
                          type: string
                      type: object
                    type: array
                type: object
          description: JWKS berhasil
      summary: JSON Web Key Set (JWKS)
      tags:
      - Discovery
  /.well-known/oauth-authorization-server:
    get:
      operationId: getOAuthMetadata
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerMetadata'
          description: Metadata server otorisasi OAuth 2.0
      summary: OAuth 2.0 Authorization Server Metadata (RFC 8414)
      tags:
      - Discovery
  /.well-known/openid-configuration:
    get:
      operationId: getOidcConfiguration
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerMetadata'
          description: Konfigurasi OIDC
      summary: OpenID Connect Discovery
      tags:
      - Discovery
components:
  schemas:
    ServerMetadata:
      description: RFC 8414 / OIDC Discovery metadata
      properties:
        authorization_endpoint:
          type: string
        end_session_endpoint:
          type: string
        grant_types_supported:
          items:
            type: string
          type: array
        id_token_signing_alg_values_supported:
          items:
            type: string
          type: array
        introspection_endpoint:
          type: string
        issuer:
          type: string
        jwks_uri:
          type: string
        response_types_supported:
          items:
            type: string
          type: array
        revocation_endpoint:
          type: string
        scopes_supported:
          items:
            type: string
          type: array
        token_endpoint:
          type: string
        token_endpoint_auth_methods_supported:
          items:
            type: string
          type: array
        userinfo_endpoint:
          type: string
      type: object
  securitySchemes:
    BasicAuth:
      description: client_id:client_secret via Basic Auth header
      scheme: basic
      type: http
    BearerAuth:
      bearerFormat: JWT
      description: Access token JWT dari /oauth/token
      scheme: bearer
      type: http