N₂O

N₂O

Full Name
Nitrous Oxide
Javascript Example
Python Example
Property
Yearly
Monthly
 
 
 
Javascript
var requestOptions = { method: 'GET', redirect: 'follow' }; fetch("https://api.anthropogenic.com/api/n2o/yearly", requestOptions) .then(response => response.text()) .then(result => console.log(result)) .catch(error => console.log('error', error));
 
Python
import requests url = "https://api.anthropogenic.com/api/n2o/yearly" payload={} headers = {} response = requests.request("GET", url, headers=headers, data=payload) print(response.text)
 
R
library(RCurl) res <- getURL("https://api.anthropogenic.com/api/n2o/yearly", .opts=list(followlocation = TRUE)) cat(res)