Skip to main content
Retrieve the full details of a single identity using its UUID.

Path parameters

id
string
required
The UUID of the identity to retrieve.

Response

id
string
Unique identifier for the identity (UUID).
email
object | null
The provisioned email channel, or null if no email was provisioned.
phone
object | null
The provisioned phone channel, or null if no phone was provisioned.
virtualCard
object | null
The provisioned virtual card channel, or null if no card was provisioned.

Errors

StatusDescription
404No identity found with the given ID.
curl https://api.agentity.to/identities/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer YOUR_JWT"
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "email": {
    "address": "my-agent-001@agentmail.to",
    "issuer": "AGENTMAIL"
  },
  "phone": {
    "number": "+14155550100",
    "issuer": "AGENTPHONE"
  },
  "virtualCard": {
    "token": "tok_sandbox_abc123",
    "issuer": "PRIVACY"
  }
}