All data sources

World Bank Pink Sheet

No authworldbank-pink-sheet

World Bank Commodity Price Data ("The Pink Sheet") — the canonical free monthly global commodity benchmark, 1960 to present. Crude oil (Brent / WTI / Dubai / average) at $/bbl, natural gas (US Henry Hub / Europe / Japan LNG) at $/mmbtu, coal (Australia / South Africa) at $/mt, plus the full ag / metals / fertilizer set and commodity price indices (2010 = 100). Query any commodity by month range from a single monthly workbook.

Provenance

PublisherWorld Bank Pink Sheet

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (7)

  • getCrudeOilPrices

    read

    Monthly Brent / WTI / Dubai / average crude spot prices ($/bbl)

    Paginationnone
    Input schema
    {
      "type": "object",
      "properties": {
        "from": {
          "type": "string",
          "examples": [
            "2020M01"
          ]
        },
        "to": {
          "type": "string",
          "examples": [
            "2024M12"
          ]
        }
      },
      "additionalProperties": false
    }

    Args: from?, to? (month "YYYYMmm" or "YYYY-MM")

  • getNaturalGasPrices

    read

    Monthly US Henry Hub / Europe / Japan LNG gas prices ($/mmbtu)

    Paginationnone
    Input schema
    {
      "type": "object",
      "properties": {
        "from": {
          "type": "string",
          "examples": [
            "2022M01"
          ]
        },
        "to": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • getCoalPrices

    read

    Monthly Australian / South African thermal coal prices ($/mt)

    Paginationnone
    Input schema
    {
      "type": "object",
      "properties": {
        "from": {
          "type": "string",
          "examples": [
            "2023M01"
          ]
        },
        "to": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • getCommodityPrice

    read

    Any single commodity column by name (Copper, Gold, Wheat, Urea, ...)

    Paginationnone
    Input schema
    {
      "type": "object",
      "properties": {
        "commodity": {
          "type": "string",
          "examples": [
            "Copper"
          ]
        },
        "from": {
          "type": "string",
          "examples": [
            "2020M01"
          ]
        },
        "to": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "commodity"
      ]
    }

    commodity required; from/to optional

  • getMonthlyPrices

    read

    Full Monthly Prices table for one month or the recent N months

    Paginationnone
    Input schema
    {
      "type": "object",
      "properties": {
        "month": {
          "type": "string"
        },
        "months": {
          "type": "number",
          "examples": [
            12
          ]
        }
      },
      "additionalProperties": false
    }

    Args: month? | months? (default 12)

  • getPriceIndices

    read

    Commodity price indices (Energy, Metals, Agriculture, ...; 2010 = 100)

    Paginationnone
    Input schema
    {
      "type": "object",
      "properties": {
        "indices": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "from": {
          "type": "string",
          "examples": [
            "2020M01"
          ]
        },
        "to": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • getServiceInfo

    read

    Static overview — sheets, period format, methods, key energy columns

    Paginationnone
    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }