> For the complete documentation index, see [llms.txt](https://smartscenarios.pirichain.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://smartscenarios.pirichain.com/psce-functions/finddatawithvalue/finddataupperthanvalue.md).

# findDataUpperThanValue

You can use this command to find data which has been saved block network.

```javascript
const result = await Transaction.findDataUpperThanValue(<from:Base58>, <to:Base58>, <key:string>,<value:float|integer>, <skip:integer>, <limit:integer>)

```

**From:**  Sender Address

**To:** Receipt Address

**Key:** Get data by key property ,

**Value:** Get data by value propert, must be float or integer

**Skip :** Skip Relevant data records

**Limit:** Set limitation of records

**Sample:**

```javascript
const result = await Transaction.findDataUpperThanValue(<from:Base58>, <to:Base58>, <key:string>,<value:float|integer>, <skip:integer>, <limit:integer>)
```

**Response:**

```json
[
    {
        "myKey":"Thats my value!"
    }
]
```
