> For the complete documentation index, see [llms.txt](https://docs.smartlink.so/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.smartlink.so/for-third-parties-eth/get-all-stored-transactions.md).

# Get All Stored Transactions

```javascript
const txs =await escrow.getTransactions();
```

As a response, you will get an array of objects with the following structure:&#x20;

```javascript
{
    adId:string,
    marketplaceId:string,
    details:{
        seller:string,
        buyer:string,
        tokenAddress:string,
        amount:BigNumber,
        feesAmount:BigNumber,
        date:BigNumber;
        lookupIndex:BigNumber;
        status:number //{INITIALISED=0, CONFIRMED=1, CANCELED=2}
    }
}

```
