# Smart Money Portfolio Holdings

### List Holdings

Get a paginated list of all token holdings.

**Endpoint:** `GET /holdings`

**Parameters:**

* `limit` (optional): Holdings per page
* `offset` (optional): Number of holdings to skip

**Example:**

```
GET /holdings?limit=200&offset=400
```

### List Token Holdings

List holdings for a specific token.

**Endpoint:** `GET /holdings/token/:contract_address`

**Parameters:**

* `contract_address`: Token contract address <mark style="color:purple;">**(use all lower case characters)**</mark>
* `limit` (optional): Holdings per page
* `offset` (optional): Number of holdings to skip

**Example:**

```
GET /holdings/token/0x1234567890abcdef1234567890abcdef12345678?limit=100
```

### Get Holding Details

Get details for a specific holding.

**Endpoint:** `GET /holdings/:id`

**Parameters:**

* `id`: Holding ID

**Example:**

```
GET /holdings/123
```


---

# 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://breakout-bro.gitbook.io/breakout-bro-api/smart-money-portfolio-holdings.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.
