List the provider accounts the current identity can sign in with, e.g. for an "connected accounts" section in your app's settings page. See signing in with a provider.
The API token needs the update-self permission for the identity's group, as for fetching the identity itself.
GET https://api.jsonpad.io/identities/self/providerscurl https://api.jsonpad.io/identities/self/providers \
-H "x-api-token: <YOUR TOKEN>" \
-H "x-identity-group: players" \
-H "x-identity-token: <IDENTITY TOKEN>"No parameters
x-api-tokenstringYour API token.x-identity-tokenstringAn identity token.x-identity-groupstringAn identity group.No request body
One entry per linked account, oldest first. The email address and name are whatever the provider said at the last sign-in, and aren't necessarily the identity's own.
[0: {provider: "google"email: "ada@example.com"name: "Ada Lovelace"avatarUrl: "https://lh3.googleusercontent.com/a/..."createdAt: "2026-09-18T20:32:05.920Z"lastLoginAt: "2026-09-18T20:32:05.920Z"}]No response headers
2026-09-17