For developers

Standards in. No lock-in out.

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.

OAuth 2.0OpenID ConnectPKCEJWKSRFC 7662
oauth-token.sh
# 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" }
Endpoints
GET /.well-known/openid-configuration Discovery document
GET /oauth/authorize Start the authorization flow
POST /oauth/token Exchange a code for tokens
POST /oauth/token/introspect Validate a token (RFC 7662)
GET /oauth/jwks.json Public keys for RS256
Drop-in

Integrate in an afternoon.

WordPress SSO

A plug-in that hands sign-in to SIMEZU. Install, point it at your app, done.

Forms SDK

Embed login, register and reset forms anywhere. Auth logic stays central.

Agent tokens

Issue scoped sk_agent tokens for the machines and services you build.

Developers collaborating on a build

Read the docs. Ship today.