# Smart Money Swap Transactions

### List Swap Transactions

List swap transactions within a time range.

**Endpoint:** `GET /swap-transactions`

**Parameters:**

* `start_time` (required): Start time. Unix timestamp in milliseconds (ms) since epoch
* `end_time` (required): End time. Unix timestamp in milliseconds (ms) since epoch
* `address` (optional): Wallet address involved in the transaction
* `limit` (optional): Transactions per page
* `offset` (optional): Number of transactions to skip
* `token_id` (optional): The token ID of the swapped token

**Example:**

```
GET /swap-transactions?start_time=173887240000&end_time=1738872537184&limit=100&token_id=1
```

### Get Swap Transaction Details

Get details for a specific swap transaction.

**Endpoint:** `GET /swap-transactions/:hash`

**Parameters:**

* `hash`: Transaction hash

**Example:**

```
GET /swap-transactions/0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890
```


---

# 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-swap-transactions.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.
