Guides Getting started
Endpoints
Everything AgeWallet exposes, in one place. If your OIDC library supports discovery, you only need the first URL.
Discovery
https://app.agewallet.io/.well-known/openid-configuration
Point your library at this and it will configure the rest — endpoint URLs, supported scopes, and the signing keys used for ID tokens — without you hard-coding anything.
| Setting | Value |
|---|---|
| Issuer | https://app.agewallet.io |
| Discovery document | https://app.agewallet.io/.well-known/openid-configuration |
Endpoints
| Purpose | Method | URL |
|---|---|---|
| Authorization | GET | https://app.agewallet.io/user/authorize |
| Token exchange | POST | https://app.agewallet.io/user/token |
| User info | GET | https://app.agewallet.io/user/userinfo |
You only need these if you are building requests by hand. With discovery, or with one of our SDKs, they are resolved for you.