---
title: "List all social logins"
method: GET
path: "/socialAccounts"
tags: ["Users"]
---

# List all social logins

`GET /socialAccounts`

Returns a list of social logins.

The list can be sorted and filtered:
- The `sort` parameter supports the following fields: `providerType` and `foreignID`.
- The `filter` parameter supports the following fields: `providerType` and `foreignID`.

Refer to the parameter description for more details on sorting in different directions and using the filter with different operators.

## Query parameters

- `sort` string
- `filter[]` string[]
- `page` integer
- `pageSize` integer

## Response `200`

List of social logins.

- SocialAccountList
  - `socialAccounts` SocialAccount[], required
    - `socialAccountID` string, required — Unique identifier of the social account.
    - `providerType` string, required — Type of the social provider.
    - `identifierValue` string, required — Login identifier of the user (here email address).
    - `userID` string, required — Unique identifier of the user.
    - `foreignID` string, required — Unique identifier of the user in the social provider.
    - `avatarURL` string, required — URL of the avatar of the user in the social provider.
    - `fullName` string, required — Full name of the user in the social provider.
  - `paging` object, required
    - `page` integer, required — current page returned in response
    - `totalPages` integer, required — total number of pages available
    - `totalItems` integer, required — total number of items available

## Other responses

- `default` — Error

---

[API](https://skmtc.dev/corbado/apis/corbado-backend-api.md) · [All operations](https://skmtc.dev/corbado/apis/corbado-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/corbado/corbado-backend-api/revisions/1f6143efe426/schema)
