# 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"}}}}}}}}}}}
```
