List the sign-in providers enabled for an identity group, so your app can show a button for each one. Turning a provider on or off in the dashboard then changes your app's sign-in page without a deploy. See signing in with a provider.
The API token needs the authenticate permission for the group.
GET https://api.jsonpad.io/identities/oauth/providerscurl "https://api.jsonpad.io/identities/oauth/providers?group=players" \
-H "x-api-token: <YOUR TOKEN>"groupstringThe identity group. Leave this out for identities with no group.x-api-tokenstringYour API token.No request body
The enabled providers. An unknown group, or one with no providers set up, gives an empty list.
[0: {provider: "google"name: "Google"}1: {provider: "github"name: "GitHub"}]No response headers
2026-09-17