A full OAuth 2.0 and OpenID Connect provider with discovery, JWKS and introspection. Drop-in SSO for WordPress and modular CMSes, plus native AI-agent tokens.
# exchange an OAuth 2.0 code for tokens curl -X POST https://simezu.com/oauth/token \ -d grant_type=authorization_code \ -d code=$AUTH_CODE \ -d client_id=$CLIENT_ID # access_token (RS256) + id_token come back curl https://simezu.com/oauth/token/introspect \ -d token=$ACCESS_TOKEN { "active": true, "actor_type": "user" }
/.well-known/openid-configuration
Discovery document
/oauth/authorize
Start the authorization flow
/oauth/token
Exchange a code for tokens
/oauth/token/introspect
Validate a token (RFC 7662)
/oauth/jwks.json
Public keys for RS256
A plug-in that hands sign-in to SIMEZU. Install, point it at your app, done.
Embed login, register and reset forms anywhere. Auth logic stays central.
Issue scoped sk_agent tokens for the machines and services you build.
