Updated 2023-10-14

    with data as (
    select
    livequery.live.udf_api('https://ipfs.io/ipfs/bafybeihaese4z7ac46p5gr6pruufyohsjfyzgkv3isjnnvhxevqx3chk34') as response
    ),

    moving as (

    select
    response
    ,value as object
    from data
    ,lateral flatten (input => response)
    --:"Campo")
    ),


    campo as (

    select
    object
    --,value
    from moving
    where object[0] ilike '%Campo%'
    --,lateral flatten (input => object)
    ),

    value as (
    select
    object
    ,value
    from campo
    ,lateral flatten (input => object)
    ),

    Run a query to Download Data