JSON PATH avatar
JSON PATH

Pricing

$10.00/month + usage

Go to Store
JSON PATH

JSON PATH

Developed by

Tin

Tin

Maintained by Community

Analyse, transform, and selectively extract data from JSON documents (and JavaScript objects).

0.0 (0)

Pricing

$10.00/month + usage

0

Total users

5

Monthly users

1

Runs succeeded

>99%

Last modified

7 months ago

Analyse, transform, and selectively extract data from JSON documents (and JavaScript objects). Try to test the json path valid or not at the json path online https://jsonpath.com/

Input example

{
"jsonPath": "$[?(@.price>15000000)]",
"transformFunction": "$ => ({ name: $.name, sku: $.sku })",
"url": "https://api.apify.com/v2/datasets/P88peu2dDFe53hdMK/items?clean=true&format=json"
}

Output example

The output has only items with price is greater than 15 millions and will only two properties (name, sku)

[{
"name": "Apple iPhone 13",
"sku": "5447919661404"
},
{
"name": "Apple iPhone 11",
"sku": "5679549432792"
}]