Universiti Kebangsaan Malaysia Single Sign-On API

SAML 2.0 browser SSO and single logout profiles.

Operations 2

GET /SSOService.php SAML 2.0 SingleSignOnService (HTTP-Redirect binding) #
GET /SingleLogoutService.php SAML 2.0 SingleLogoutService (HTTP-Redirect binding) #

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/ukm-single-sign-on-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

ukm-single-sign-on-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: UKM Identity Provider — SAML 2.0 (SSO@UKM) Single Sign-On…
  version: '2.0'
  summary: Universiti Kebangsaan Malaysia's own SAML 2.0 identity provider and its published metadata.
  description: SSO@UKM is Universiti Kebangsaan Malaysia's institution-operated SAML 2.0 identity provider, a SimpleSAMLphp deployment on the university's own domain at sso.ukm.my.
  contact:
    name: SSO@UKM administrator
    email: server@ukm.edu.my
    url: https://sso.ukm.my/
  x-operator: institution
  x-institution: Universiti Kebangsaan Malaysia
  x-software: SimpleSAMLphp
  x-provenance:
    generated: '2026-09-01'
    method: probed
    source: https://sso.ukm.my/saml2/idp/metadata.php
servers:
- url: https://sso.ukm.my/saml2/idp
  description: SSO@UKM SAML 2.0 identity provider
tags:
- name: Single Sign On
  description: SAML 2.0 browser SSO and single logout profiles.
paths:
  /SSOService.php:
    get:
      operationId: samlSingleSignOn
      tags:
      - Single Sign On
      summary: SAML 2.0 SingleSignOnService (HTTP-Redirect binding)
      description: Browser SSO endpoint. Accepts a SAML AuthnRequest via the HTTP-Redirect binding and returns an interactive login page; it is not callable by a non-browser agent. The only NameID format declared is transient.
      parameters:
      - name: SAMLRequest
        in: query
        required: false
        description: Deflated, base64-encoded SAML 2.0 AuthnRequest.
        schema:
          type: string
      - name: spentityid
        in: query
        required: false
        description: SimpleSAMLphp IdP-first shorthand naming the service provider entity ID, as used by libquest.ukm.my.
        schema:
          type: string
      - name: RelayState
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Interactive login page (HTML).
          content:
            text/html:
              schema:
                type: string
        '302':
          description: Redirect back to the service provider's assertion consumer service.
  /SingleLogoutService.php:
    get:
      operationId: samlSingleLogout
      tags:
      - Single Sign On
      summary: SAML 2.0 SingleLogoutService (HTTP-Redirect binding)
      description: Single logout endpoint declared in the IdP metadata.
      parameters:
      - name: SAMLRequest
        in: query
        required: false
        schema:
          type: string
      responses:
        '302':
          description: Redirect completing the logout flow.