List sign-in providers

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/providers

Example

cURL
12curl "https://api.jsonpad.io/identities/oauth/providers?group=players" \ -H "x-api-token: <YOUR TOKEN>"

Parameters

  • optional
    groupstringThe identity group. Leave this out for identities with no group.

Request headers

  • required
    x-api-tokenstringYour API token.

Request body

No request body

Response body

200 OK

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"
}
]

Response headers

No response headers

2026-09-17