ueex.com.ua APIueex.com.ua ↗
Access natural gas trading results, electricity price indices, commodity quotations, and trading calendar data from the Ukrainian Energy Exchange via a structured API.
curl -X GET 'https://api.parse.bot/scraper/22f05eac-3c53-4513-a2e5-9707ae0a31da/get_natural_gas_trading_results?period=01.2025&market_type=1' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch trading results for natural gas standardized products (short-term market). Returns tabular data with trading day, product type, supply conditions, volume, and exchange rates.
| Param | Type | Description |
|---|---|---|
| period | string | Period in MM.YYYY format (e.g., '01.2025'). Omitting defaults to current month. |
| market_type | string | Market type: '1' (Within Day), '2' (Day Ahead), '3' (Week), '4' (Month). |
{
"type": "object",
"fields": {
"results": "array of trading result objects with keys for trading day, product, supply conditions, volume, and exchange rates (with/without VAT)"
},
"sample": {
"data": {
"results": [
{
"Продукт": "WD",
"Торговий день": "31.01.2025",
"Обсяг, тис. куб. м.": "20,00",
"Умови постачання": "ГТС",
"Біржовий курс, грн, з ПДВ/тис. куб. м.": "20 158,80",
"Біржовий курс, грн, без ПДВ/тис. куб. м.": "16 799,00"
}
]
},
"status": "success"
}
}About the ueex.com.ua API
This API exposes 7 endpoints covering the Ukrainian Energy Exchange (ueex.com.ua), returning structured data on natural gas short-term and medium/long-term markets, electricity BASE load indices, and commodity quotations for coal, LPG, timber, oil products, and fertilizers. The get_natural_gas_trading_results endpoint filters by market type (Within Day, Day Ahead, Week, Month) and returns per-trade volume and exchange rates. All responses use typed JSON fields ready for time-series analysis or price monitoring.
Natural Gas Market Data
The get_natural_gas_trading_results endpoint covers the short-term natural gas market. It accepts a period parameter in MM.YYYY format and a market_type parameter ('1' through '4', mapping to Within Day, Day Ahead, Week, and Month). Each result object in the results array includes trading day, product type, supply conditions, traded volume, and exchange rates both with and without VAT. The get_natural_gas_medium_longterm_market endpoint returns a separate dataset for medium- and long-term contracts, with fields for resource period, trade date, supply conditions, payment conditions, volume, and quotation price.
Electricity Indices and Auction Quotations
get_electricity_indices returns BASE load price indices for the Ukrainian Power System split across four tables: table_0 for monthly indices, table_2 for half-year/quarterly indices, and table_3 for decade (10-day) indices. table_1 may be empty depending on current published data. The get_electricity_auction_quotations endpoint returns auction price quotation tables as nested arrays, structured to mirror the published quotation pages.
Commodity Quotations and Trading Calendar
get_commodity_quotations accepts five optional filters — day, month, year, commodity (slugs: coal-products, lpg, timber, oil-products, fertilizers), and section_id — and returns quotation objects with date, product name, delivery basis, volume, prices in UAH, USD, and EUR, and price deviation. The get_trading_calendar endpoint returns a list of days for a given year and month, each containing an array of events with title and link fields. The get_glossary endpoint returns Ukrainian-language energy trading terms as term/definition pairs.
- Track daily natural gas spot prices across Within Day and Day Ahead market segments using
get_natural_gas_trading_results. - Build electricity price dashboards by pulling monthly and decade BASE load indices from
get_electricity_indices. - Monitor coal and LPG quotation changes in UAH, USD, and EUR using
get_commodity_quotationswith commodity slug filters. - Automate alerts for upcoming exchange auction events by parsing the
eventsarray fromget_trading_calendar. - Analyze medium- and long-term natural gas contract pricing trends using resource period and quotation price fields from
get_natural_gas_medium_longterm_market. - Build a localized energy trading glossary tool from the Ukrainian-language term/definition pairs returned by
get_glossary. - Compare electricity auction quotations over time by storing successive responses from
get_electricity_auction_quotations.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does UEEX have an official developer API?+
How do I filter commodity quotations by product type and date?+
get_commodity_quotations accepts independent day (DD), month (MM), and year (YYYY) string parameters alongside a commodity slug (coal-products, lpg, timber, oil-products, or fertilizers). You can also pass a numeric section_id for finer filtering. Omitting any parameter broadens the result set.Does the API return historical natural gas trading data beyond the current month?+
get_natural_gas_trading_results endpoint accepts a period parameter in MM.YYYY format, so you can request any month that the exchange has published. However, the depth of available historical data depends on what UEEX has on its site; very old periods may return empty results if the source no longer publishes them.Does the API cover biomass, renewables, or green certificate trading data?+
Are individual trade-level order book details available?+
results array in get_natural_gas_trading_results provides per-session volume and rate summaries. You can fork this API on Parse and revise it to target any order detail pages the exchange publishes.