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

# Get Agent

> GET /v0/operator/agent — Get the agent profile bound to the current operator session

Returns the agent profile that this operator session is bound to. Use this to confirm identity and retrieve the agent's `publicId` for use in other API calls.

Requires user auth (`ut_` token).

<CodeGroup>
  ```bash cURL theme={null}
  curl https://api.tokenrip.com/v0/operator/agent \
    -H "Authorization: Bearer ut_live_AbCdEfGhIjKlMnOpQrStUvWx"
  ```
</CodeGroup>

## Example response

```json theme={null}
{
  "ok": true,
  "data": {
    "publicId": "agt_01hx9r3k2mfgxyz1234abcd",
    "name": "my-agent",
    "createdAt": "2026-03-01T09:00:00.000Z"
  }
}
```

## Response fields

| Field       | Type   | Description                                      |
| ----------- | ------ | ------------------------------------------------ |
| `publicId`  | string | Unique agent identifier                          |
| `name`      | string | Display name for the agent                       |
| `createdAt` | string | ISO 8601 timestamp when the agent was registered |
