Gets an end user by ID.
This API is intended to be used by the developer’s own backend, and is authenticated using the developer’s CDP API key.
A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.
The ID of the end user to get.
Successfully got end user.
Information about the end user.
A stable, unique identifier for the end user. The userId must be unique across all end users in the developer's CDP Project. It must be between 1 and 100 characters long and can only contain alphanumeric characters and hyphens.
"e051beeb-7163-4527-a5b6-35e301529ff2"
The list of valid authentication methods linked to the end user.
Information about how the end user is authenticated.
[
{
"type": "email",
"email": "[email protected]"
},
{
"type": "sms",
"phoneNumber": "+12055555555"
},
{
"type": "jwt",
"sub": "e051beeb-7163-4527-a5b6-35e301529ff2",
"kid": "NjVBRjY5MDlCMUIwNzU4RTA2QzZFMDQ4QzQ2MDAyQjVDNjk1RTM2Qg"
},
{
"type": "google",
"sub": "115346410074741490243",
"email": "[email protected]"
}
]DEPRECATED: Use evmAccountObjects instead for richer account information. The list of EVM account addresses associated with the end user. End users can have up to 10 EVM accounts.
The address of the EVM account associated with the end user.
[
"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
]DEPRECATED: Use evmSmartAccountObjects instead for richer account information including owner relationships. The list of EVM smart account addresses associated with the end user. Each EVM EOA can own one smart account.
The address of the EVM smart account associated with the end user.
[
"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
]DEPRECATED: Use solanaAccountObjects instead for richer account information. The list of Solana account addresses associated with the end user. End users can have up to 10 Solana accounts.
The base58 encoded address of the Solana account associated with the end user.
[
"HpabPRRCFbBKSuJr5PdkVvQc85FyxyTWkFM2obBRSvHT"
]The date and time when the end user was created, in ISO 8601 format.
"2025-01-15T10:30:00Z"