All data sources

NREL Developer API

API keynrel

National Renewable Energy Laboratory data — solar and wind resource at any lat-lon, PVWatts solar production modeling, alt-fuel station locator (~280K stations), and utility rate schedules.

Provenance

PublisherNREL Developer API

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (3)

  • getSolarResource

    read

    Get NREL solar resource (GHI/DNI/tilt) for a lat/lon.

    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "latitude": {
          "type": "number"
        },
        "longitude": {
          "type": "number"
        },
        "lat": {
          "type": "number"
        },
        "lon": {
          "type": "number"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        }
      },
      "additionalProperties": false
    }
  • getWindResource

    read

    Get NREL wind resource data for a lat/lon.

    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "wkt": {
          "type": "string"
        },
        "latitude": {
          "type": "number"
        },
        "longitude": {
          "type": "number"
        },
        "lat": {
          "type": "number"
        },
        "lon": {
          "type": "number"
        },
        "names": {
          "type": "string"
        },
        "interval": {
          "type": "number"
        },
        "email": {
          "type": "string"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        }
      },
      "additionalProperties": false
    }
  • getAltFuelStations

    read

    Find alternative-fuel stations (EV/CNG/H2) by location.

    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "query": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "location": {
          "type": "string"
        },
        "fuel_type": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        },
        "radius": {
          "type": "number"
        },
        "status": {
          "type": "string"
        },
        "access": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }