API Documentation
Account
Lists
Face Match
Types
Account
Get Linked Accounts
Returns all accounts linked to a specific account
Copy
Ask AI
curl --request GET \
--url https://api.sandbox.verisoul.ai/account/{account_id}/accounts-linked \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"request_id": "9b3f35c7-a4e6-4762-91db-b026bfe46e9c",
"accounts_linked": [
{
"account_id": "john-doe-1",
"score": 0.1085,
"match_type": [
"network",
"email",
"browser",
"device"
],
"email": "john.doe@example.com",
"lists": [
"us_users"
],
"metadata": {}
},
{
"account_id": "john-doe-2",
"score": 0.1085,
"match_type": [
"network",
"email",
"browser"
],
"email": "john.doe2@example.com",
"lists": [
"us_users"
],
"metadata": {}
}
]
}
Authorizations
Path Parameters
ID of the account to retrieve linked accounts for
Response
200
application/json
Linked accounts response
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.sandbox.verisoul.ai/account/{account_id}/accounts-linked \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"request_id": "9b3f35c7-a4e6-4762-91db-b026bfe46e9c",
"accounts_linked": [
{
"account_id": "john-doe-1",
"score": 0.1085,
"match_type": [
"network",
"email",
"browser",
"device"
],
"email": "john.doe@example.com",
"lists": [
"us_users"
],
"metadata": {}
},
{
"account_id": "john-doe-2",
"score": 0.1085,
"match_type": [
"network",
"email",
"browser"
],
"email": "john.doe2@example.com",
"lists": [
"us_users"
],
"metadata": {}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.