JSON PATH avatar
JSON PATH

Pricing

$10.00/month + usage

Go to Apify Store
JSON PATH

JSON PATH

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

Pricing

$10.00/month + usage

Rating

0.0

(0)

Developer

Tin

Tin

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

2

Monthly active users

a year ago

Last modified

Share

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"
}]