1234567891011121314151617181920212223242526272829303132typet={net:Eio.Net.t}letvnet={net}leturl_host="odre.opendatasoft.com"leturl_path="/api/explore/v2.0/catalog/datasets/eco2mix-national-tr/records"letencode_value=Stringext.replace_all~pattern:" "~with_:"%20"letquery_params=[("select","taux_co2");("where","taux_co2 is not null");("order_by","date_heure desc");("limit","1");]letextract_from_responsejson=json|>J.path["records"]|>J.only|>J.path["record";"fields";"taux_co2"]|>J.to_intletget{net}=letquery_string=Printf.sprintf"%s?%s"url_path(List.map(fun(k,v)->Printf.sprintf"%s=%s"k(encode_valuev))query_params|>String.concat"&")inHttp_client.get_json~net~headers:(Http.Header.of_list[("Host",url_host)])(url_host,query_string)|>extract_from_response