clerk.get_email_address
Retrieve a Clerk email address by its id.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns the email address summary.
Cost = 3 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| email_address_id | Yes | Clerk email address id (idn_...) to retrieve or modify. | |
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Clerk email address id (idn_...). | |
| primary | No | Whether this is the user's primary email address. | |
| user_id | No | Clerk user id (user_...) that owns this email address. | |
| verified | No | Whether the email address is verified. | |
| created_at | No | Unix timestamp in milliseconds when the email address was created. | |
| updated_at | No | Unix timestamp in milliseconds when the email address was last updated. | |
| email_address | No | Email address value. | |
| verification_status | No | Verification status (e.g. verified, unverified, failed). |