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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/alianza-single-sign-on-sso-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
openapi: 3.2.0
info:
title: Alianza Single Sign On - SSO API
version: '2'
description: 'Operations tagged Single Sign On - SSO across 2 of this provider''s published API definitions: alianza-openapi-original.yml, alianza-single-sign-on-sso-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.d2.alianza.com
description: Development
- url: https://api.q2.alianza.com
description: QA
- url: https://api.b2.alianza.com
description: Beta
- url: https://api.alianza.com
description: Production
security:
- X-Auth-Token: []
tags:
- name: Single Sign On - SSO
description: Operations for managing SSO
paths:
/v2/authorize/sso:
servers:
- url: https://api.d2.alianza.com
description: Development
- url: https://api.q2.alianza.com
description: QA
- url: https://api.b2.alianza.com
description: Beta
- url: https://api.alianza.com
description: Production
get:
tags:
- Single Sign On - SSO
summary: Get SSO data
description: Returns data needed for the UI to initiate Single Sign On
operationId: getClientId
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/SsoDataX'
'400':
description: Invalid request parameters
content:
application/json:
schema:
$ref: '#/components/schemas/PublicApiException'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/PublicApiException'
'404':
description: Not found
content:
application/json:
schema:
$ref: '#/components/schemas/PublicApiException'
security: []
post:
tags:
- Single Sign On - SSO
summary: Authorization Code Exchange
description: Pass the SSO response authorization code here to exchange it for an API authorization token
operationId: getLoginInfo_1
parameters:
- name: code
in: query
schema:
type: string
- name: redirect_uri
in: query
schema:
type: string
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/LoginTokenX'
'400':
description: Invalid request parameters
content:
application/json:
schema:
$ref: '#/components/schemas/PublicApiException'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/PublicApiException'
'404':
description: Not found
content:
application/json:
schema:
$ref: '#/components/schemas/PublicApiException'
security: []
components:
schemas:
LoginTokenX:
type: object
properties:
authToken:
type: string
userId:
type: string
userType:
type: string
enum:
- AccountUser
- EndUser
- ManagementUser
- AlianzaUser
- BusinessLines
endUserType:
type: string
enum:
- ADMIN
- ADVANCED_ADMIN
- BASIC_ADMIN
- STANDARD
- STANDARD_ADMIN
- SUPER_ADMIN
username:
type: string
firstName:
type: string
lastName:
type: string
emailAddress:
type: string
partitionId:
type: string
partitionName:
type: string
accountId:
type: string
permissions:
type: object
additionalProperties:
type: string
enum:
- NONE
- READ_MYUSER
- READ
- EDIT_MYUSER
- EDIT
- CREATE_MYUSER
- CREATE
- DELETE_MYUSER
- DELETE
- DENIED
featureToggles:
type: object
additionalProperties:
type: boolean
mustChangePassword:
type: boolean
subPartitionIds:
type: array
items:
type: string
uniqueItems: true
tokenSource:
type: string
grantedAuthorities:
type: array
items:
type: string
uniqueItems: true
pwdHash:
type: string
mustAddEmail:
type: boolean
maxLifeInHours:
type: integer
format: int32
groupId:
type: string
groupName:
type: string
SsoDataX:
type: object
properties:
clientId:
type: string
ssoUrl:
type: string
PublicApiException:
type: object
properties:
status:
type: integer
messages:
type: array
items:
type: string
data:
type: object
additionalProperties: true
example:
key: value
key2: value2
securitySchemes:
X-Auth-Token:
type: apiKey
in: header
name: X-AUTH-TOKEN
x-refined-from:
- alianza-openapi-original.yml
- alianza-single-sign-on-sso-api-openapi.yml