> For the complete documentation index, see [llms.txt](https://painor.gitbook.io/gramjs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://painor.gitbook.io/gramjs/working-with-games/messages.getinlinegamehighscores.md).

# messages.getInlineGameHighScores

Get highscores of a game sent using an inline bot

## Example

{% tabs %}
{% tab title="Javascript" %}

```javascript
const {Api, TelegramClient} = require('telegram');
const {StringSession} = require('telegram/sessions');

const session = new StringSession('');
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
    const result = await client.invoke(new Api.messages.getInlineGameHighScores({
        id: new Api.InputBotInlineMessageID({...}),
        userId: new Api.InputUser({...}),
        }));
    console.log(result); // prints the result
})();
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
import {Api, TelegramClient} from 'telegram';
import {StringSession} from 'telegram/sessions';

const session = new StringSession('');
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
    const result: Api.messages.HighScores = await client.invoke(new Api.messages.getInlineGameHighScores({
        id: new Api.InputBotInlineMessageID({...}),
        userId: new Api.InputUser({...}),
        }));
    console.log(result); // prints the result
})();
```

{% endtab %}
{% endtabs %}

## TL schema

```
messages.highScores#9a3bfd99 scores:Vector<HighScore> users:Vector<User> = messages.HighScores;
---functions---
messages.getInlineGameHighScores#f635e1b id:InputBotInlineMessageID user_id:InputUser = messages.HighScores;
```

## Parameters

|     Name     | Type                                                                              | Description                       |
| :----------: | --------------------------------------------------------------------------------- | --------------------------------- |
|    **id**    | [InputBotInlineMessageID](https://core.telegram.org/type/InputBotInlineMessageID) | ID of inline message              |
| **user\_id** | [InputUser](https://core.telegram.org/type/InputUser)                             | Get high scores of a certain user |

## Result

[messages.HighScores](https://core.telegram.org/type/messages.HighScores)

## Possible errors

| Code | Type                 | Description                             |
| :--: | -------------------- | --------------------------------------- |
|  400 | MESSAGE\_ID\_INVALID | The provided message id is invalid      |
|  400 | USER\_BOT\_REQUIRED  | This method can only be called by a bot |

## Can bots use this methd ?

### yes

## Related pages


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://painor.gitbook.io/gramjs/working-with-games/messages.getinlinegamehighscores.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
