# GET Transaction history

## /bridge/tx-history

> Retrieve transaction history for a user

```json
{"openapi":"3.1.1","info":{"title":"Native Brdige API","version":"1.0.0"},"servers":[{"url":"https://v2.api.native.org"}],"security":[],"paths":{"/swap-api-v2/v1/bridge/tx-history":{"get":{"summary":"/bridge/tx-history","deprecated":false,"description":"Retrieve transaction history for a user","tags":[],"parameters":[{"schema":{"pattern":"^0x[a-fA-F0-9]{40}$","type":"string"},"name":"from_address","in":"query","description":"Address of the user requesting the transaction history","required":true},{"schema":{"type":"string"},"name":"src_chain_id","in":"query","description":"Chain ID of the source/bridge-out chain. Note this is different from the src_chain parameter in /bridge/firm-quote which is the network name.","required":true},{"schema":{"type":"string"},"name":"offset","in":"query","description":"Pagination offset. Default is 0.","required":false},{"schema":{"type":"string"},"name":"page_size","in":"query","description":"Number of transactions to return per page.","required":false},{"schema":{"type":"string"},"name":"api_key","in":"header","description":"The API key that was assigned to you by Native","required":true}],"responses":{"200":{"description":"Successful response containing transaction history","headers":{},"content":{"application/json":{"schema":{"type":"object","properties":{"tx_history":{"type":"array","description":"Array of transaction history entries","items":{"type":"object","properties":{"bridge_quote_id":{"type":"string","description":"Unique identifier for the bridging request"},"create_time":{"type":"string","description":"Unix timestamp when the transaction was created"}}}},"has_more":{"type":"boolean","description":"Indicates whether there are more transactions available"},"next_offset":{"type":"integer","format":"int32","description":"Offset to use for the next page of results"}}}}}}}}}}}
```

{% hint style="info" %}
Only quotes actually executed on source chain will display in history.
{% endhint %}


---

# 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://docs.native.org/native-dev/build-with-native/swap-aggregators/crosschain-swap-api/get-transaction-history.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.
