> 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.md).

# findDataWithValue

```javascript
const result = await Transaction.findDataWithValue(<address:Base58>, <key:string>, <value:string>, <skip:integer>, <limit:integer>)

```

**From:**  Sender Address

**To:** Receipt Address

**Key:** Get data by key property&#x20;

**Value:** Get data by value property

**Skip :** Skip Relevant data records

**Limit:** Set limitation of records

**Sample :**&#x20;

{% code overflow="wrap" %}

```javascript
return Transaction.findDataWithValue('PRTMQbunYS1CxSs5i59CrR4ot2WUThT9JvsKvLYDfwF','ratio','1.2',0,100);
```

{% endcode %}

**Response:**

```json
[
    {"addedAssetID":"10007",
     "addedLiq":"100",
     "expireDate":"2024-01-20T10:49:58.396Z",
     "ratio":"1.2"}
]
```
