# Get Me

{% hint style="info" %}
[https://core.telegram.org/bots/api#getMe](https://core.telegram.org/bots/api#getme)
{% endhint %}

#### Get your bot's user information

```csharp
Response<MyBot> response = await bot.HandleAsync(new GetMe());

if (response.Ok)
{
  MyBot myBot = response.Result;
  
  // ...
}
else
{
  Failure failure = response.Failure;
  
  // Basically you did not setup the bot token correctly
}
```
