auth

Get available social login providers

Get list of configured and enabled social authentication providers from Keycloak

get/api/auth/providers

Query parameters

platformstring nullable

Client platform (e.g. 'android', 'ios'). When 'android', Apple is excluded from the list.

Client platform (e.g. 'android', 'ios'). When 'android', Apple is excluded from the list.

Response

Successful Response

providersstring[] required

List of available provider aliases

countinteger required

Number of available providers

Example response

{
  "count": 2,
  "providers": [
    "google",
    "apple"
  ]
}

Changes