Carbon Intensity API · Example Payload

Get Current Intensity

Example response from GET /intensity — returns the current half-hour period's carbon intensity for Great Britain

Carbon IntensityEnvironmentEnergyElectricityClimateGreat BritainNational Grid

Get Current Intensity is an example object payload from Carbon Intensity API, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "summary": "Get current national carbon intensity",
  "description": "Example response from GET /intensity — returns the current half-hour period's carbon intensity for Great Britain",
  "request": {
    "method": "GET",
    "url": "https://api.carbonintensity.org.uk/intensity",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "data": [
        {
          "from": "2018-01-20T12:00Z",
          "to": "2018-01-20T12:30Z",
          "intensity": {
            "forecast": 266,
            "actual": 263,
            "index": "moderate"
          }
        }
      ]
    }
  }
}