# Rugcheck Object

#### **Rugcheck Class Documentation**

The `Rugcheck` class provides integration with the **Rugcheck.xyz** API to fetch token summary reports. It authenticates using a Solana wallet and retrieves data about specific tokens, helping you assess the safety and reliability of tokens.

#### **Methods**

***

### `getSummary`

#### **Description**

Fetches a summary report for a specified token mint address from the Rugcheck API.

#### **Signature**

```typescript
public async getSummary(mint: string): Promise<string>
```

#### **Parameters**

* `mint` (`string`): The mint address of the token to fetch the summary for.

#### **Returns**

* `Promise<string>`: The summary report of the specified token.

#### **Example Usage**

```typescript

const summary = await rugcheck.getSummary("TokenMintAddress123");
console.log("Token Summary:", summary);
```


---

# Agent Instructions: 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://gitbook.roboqo.com/global-objects/rugcheck-object.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.
