> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wirebox.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Agent Identity

> Retrieve details and mailbox bindings for a specific agent identity.

### Path Parameters

<ParamField path="handle" type="string" required>
  The agent handle (with or without leading `@`, e.g. `eva` or `@eva`).
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.wirebox.sh/api/v1/identities/eva \
    -H "Authorization: Bearer $WIREBOX_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "ident_01J8ABC123XYZ",
    "agent_handle": "eva",
    "display_name": "Eva Customer Support",
    "description": "Customer triage agent",
    "mailbox_address": "eva@wireboxmail.com",
    "created_at": "2026-09-11T10:00:00Z",
    "updated_at": "2026-09-11T10:00:00Z"
  }
  ```
</ResponseExample>
