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

```
