JSON Example

JSON Example with Product Details
{
  "Id": 78912,
  "Customer": "Jason Sweet",
  "Quantity": 1,
  "Price": 18.00
}


JSON Example with Foreign Exchange Rates
{
    "success": true,
    "timestamp": 1599629946,
    "base": "EUR",
    "date": "2020-09-09",
    "rates": {     
        "CAD": 1.558673,
        "CLP": 910.681897,
        "CNY": 8.067959,
        "CZK": 26.513846,
        "GBP": 0.908319,
        "USD": 1.178113,
    }
}


JSON Example with Weather Data
{
    "coord": {
        "lon": -87.65,
        "lat": 41.85
    },
    "weather": [{
        "id": 300,
        "main": "Drizzle",
        "description": "light intensity drizzle",
        "icon": "09n"
    }],
    "base": "stations",
    "main": {
        "temp": 289.86,
        "feels_like": 288.15,
        "temp_min": 289.26,
        "temp_max": 290.37,
        "pressure": 1021,
        "humidity": 88
    },
    "visibility": 10000,
    "wind": {
        "speed": 4.6,
        "deg": 50
    },
    "clouds": {
        "all": 90
    },
    "dt": 1599625856,
    "sys": {
        "type": 1,
        "id": 4861,
        "country": "US",
        "sunrise": 1599564254,
        "sunset": 1599610338
    },
    "timezone": -18000,
    "id": 4887398,
    "name": "Chicago",
    "cod": 200
}


JSON Example with IP Geolocation Data
{
    "ip": "8.8.8.8",
    "hostname": "dns.google",
    "city": "Mountain View",
    "region": "California",
    "country": "US",
    "loc": "37.4056,-122.0775",
    "org": "AS15169 Google LLC",
    "postal": "94043",
    "timezone": "America/Los_Angeles"
}