***

title: get_name
slug: /reference/python/agents/agent-base/get-name
description: Get the agent's display name.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Get the agent's display name as set at construction time.

## **Parameters**

None.

## **Returns**

`str` -- The agent name.

## **Example**

```python {4}
from signalwire import AgentBase

agent = AgentBase(name="support", route="/support")
print(agent.get_name())  # "support"
```