Calimatic OIDC / OAuth 2.0 Provider

Integrate your application with the Calimatic Auth platform using standards-compliant OpenID Connect and OAuth 2.0.

OAuth 2.0 (RFC 6749)OpenID Connect Core 1.0PKCE (RFC 7636)Token Introspection (RFC 7662)Token Revocation (RFC 7009)Dynamic Registration (RFC 7591)

Getting Started

The Calimatic Auth platform is a standards-compliant OIDC/OAuth2 provider. Any OAuth 2.0 client library can integrate by pointing to the discovery URL:

https://auth.calimatic.com/.well-known/openid-configuration

The provider supports three grant types:

  • Authorization Code + PKCE — Web apps, SPAs, and mobile apps (user authentication)
  • Refresh Token — Renewing expired access tokens
  • Client Credentials — Machine-to-machine communication (no user context)

All tokens are signed with RSA (RS256) and can be verified using the public keys at the JWKS endpoint.

Base URL

https://auth.calimatic.com

Endpoints at a Glance

DiscoveryGET/.well-known/openid-configuration
AuthorizationGET/api/v1/oidc/authorize
TokenPOST/api/v1/oidc/token
UserInfoGET / POST/api/v1/oidc/userinfo
JWKSGET/api/v1/oidc/jwks
IntrospectionPOST/api/v1/oidc/introspect
RevocationPOST/api/v1/oidc/revoke
End SessionGET/api/v1/oidc/end-session
RegistrationPOST/api/v1/oidc/register