All data sources

NETL EDX

No authnetl-edx

US DOE NETL EnergyData eXchange — fossil energy research datasets, well logs, core analysis, CCUS / carbon storage. CKAN API. Optional API key for rate-limit increases. DISCOVERY: searchDatasets, getDataset, getResource, searchCarbonStorage, searchWellLogs LISTINGS: listGroupDatasets, listOrganizations, listGroups CRITICAL USAGE RULES: 1. Most datasets are public; API key is optional 2. Use searchCarbonStorage for CCUS/sequestration queries 3. Pagination: rows + start (start is 0-indexed offset)

Provenance

PublisherNETL EDX

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (8)

  • searchDatasets

    read

    Search CKAN datasets by keyword.

    Required paramsquery
    Input schema
    {
      "type": "object",
      "properties": {
        "query": {
          "type": "string"
        },
        "rows": {
          "type": "number"
        },
        "start": {
          "type": "number"
        },
        "sort": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "query"
      ]
    }
  • getDataset

    read

    Full dataset metadata by ID or name (NETL EDX).

    Required paramsid
    Input schema
    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "id"
      ]
    }
  • listGroupDatasets

    read

    Datasets inside a group / collection.

    Required paramsgroup
    Input schema
    {
      "type": "object",
      "properties": {
        "group": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "group"
      ]
    }
  • listOrganizations

    read

    All organizations (data providers).

    Input schema
    {
      "type": "object",
      "properties": {
        "sort": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • listGroups

    read

    All groups / collections.

    Input schema
    {
      "type": "object",
      "properties": {
        "sort": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • getResource

    read

    Resource (file/download) metadata by resource ID.

    Required paramsid
    Input schema
    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "id"
      ]
    }
  • searchCarbonStorage

    read

    CCUS / carbon storage datasets.

    Input schema
    {
      "type": "object",
      "properties": {
        "query": {
          "type": "string"
        },
        "rows": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • searchWellLogs

    read

    Keyword search for well log datasets. Include basin name for basin-specific results.

    Input schema
    {
      "type": "object",
      "properties": {
        "query": {
          "type": "string"
        },
        "rows": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }