Discover/abaxx.exchange API
live

abaxx.exchange APIabaxx.exchange

Access historical settlement data for LNG futures contracts on Abaxx Exchange. Filter by product code and date. Returns OHLC, volume, open interest, and more.

Endpoints
2
Updated
3mo ago
Try it
Trading date in YYYY-MM-DD format. If omitted, returns the latest available date.
Product code to filter by. Accepted values: GOM, NPA, CP1, RD1, GWM, EWM, UWM, FWM, NWM, S
api.parse.bot/scraper/63b10a9b-9dc5-4e97-a63e-e689acb9bc33/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/63b10a9b-9dc5-4e97-a63e-e689acb9bc33/get_historical_data?date=2026-05-13&product=GOM' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Get historical settlement data for LNG futures contracts. Returns all contract months with OHLC prices, settlement, volume, and open interest for a given product and date. When no date is provided, returns data for the latest available trading date.

Input
ParamTypeDescription
datestringTrading date in YYYY-MM-DD format. If omitted, returns the latest available date.
productstringProduct code to filter by. Accepted values: GOM, NPA, CP1, RD1, GWM, EWM, UWM, FWM, NWM, SWM, GSM, NSS, LCS, LCR, LCB, GKS. If omitted, returns data for all products.
Response
{
  "type": "object",
  "fields": {
    "data": "array of contract objects with fields: product, symbol, contract_month, trade_date, expiry, open, high, low, close, settlement, settle_change, volume, open_interest",
    "date": "string - the trading date of the returned data in YYYY-MM-DD format",
    "product": "string - product code filter applied, or ALL if no filter",
    "total_rows": "integer - number of contract rows returned"
  },
  "sample": {
    "data": {
      "data": [
        {
          "low": "13.73",
          "high": "13.73",
          "open": "13.73",
          "close": "13.73",
          "expiry": "2026-06-02",
          "symbol": "GOMN26",
          "volume": 746,
          "product": "GOM",
          "settlement": "13.69",
          "trade_date": "2026-05-13",
          "open_interest": "3",
          "settle_change": "-0.04",
          "contract_month": "GOMN26 (Jul)"
        }
      ],
      "date": "2026-05-13",
      "product": "GOM",
      "total_rows": 24
    },
    "status": "success"
  }
}

About the abaxx.exchange API

The Abaxx Exchange API provides 2 endpoints for querying historical settlement and market data for LNG futures contracts traded on Abaxx Exchange. The get_historical_data endpoint returns per-contract OHLC prices, settlement values, volume, and open interest across all listed contract months for a given product and date. A companion get_products endpoint exposes the full list of available product codes and the date range of available data.

What the API Covers

The Abaxx Exchange lists LNG (liquefied natural gas) futures across multiple regional and product-specific codes. This API surfaces the end-of-day settlement data that Abaxx publishes on its market data page, giving you access to historical records spanning the full date range available on the exchange.

get_historical_data Endpoint

The primary endpoint, get_historical_data, accepts two optional parameters: date (a trading date in YYYY-MM-DD format) and product (one of 14 accepted product codes including GOM, NPA, CP1, RD1, GWM, EWM, UWM, FWM, NWM, SWM, GSM, NSS, LCS, and L). Omitting date returns the latest available trading date. Omitting product returns rows for all products. Each row in the data array contains the fields product, symbol, contract_month, trade_date, expiry, open, high, low, close, and settlement, along with volume and open interest. The response also includes a total_rows count and echoes back the date and product filter applied.

get_products Endpoint

The get_products endpoint takes no inputs and returns two things: an array of all valid product code strings that can be passed to get_historical_data, and a date_range object with min_eod and max_eod fields indicating the earliest and latest trading dates for which settlement data exists. This is useful for building date-range pickers or validating input before querying historical data.

Data Freshness and Coverage

Data reflects end-of-day settlement records as published by Abaxx Exchange. The get_products endpoint's max_eod field is the authoritative indicator of how current the available data is. Coverage is limited to products actively listed on Abaxx Exchange; no intraday tick or order book data is exposed.

Common use cases
  • Track daily settlement prices for specific LNG futures contract months by querying get_historical_data with a product code like GOM or NPA.
  • Build a time-series chart of OHLC values for an LNG futures product across its full historical date range.
  • Monitor open interest changes across contract months to gauge market participation trends on Abaxx Exchange.
  • Validate available product codes and data freshness before running bulk historical queries using the get_products endpoint.
  • Construct a settlement price database for LNG futures to feed quantitative models or spread analysis.
  • Alert systems that detect when volume or open interest for a given contract month crosses a threshold on a new trading date.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Abaxx Exchange have an official developer API?+
Abaxx Exchange does not currently publish a public developer API. Market data is available through their website at abaxx.exchange/market-data, which this API surfaces in a structured, queryable form.
What does the `product` parameter in `get_historical_data` control, and what happens if I omit it?+
Passing a product code — such as GOM, NPA, or CP1 — filters the response to rows for that single product. Omitting the parameter returns all available products for the specified date, and the response will reflect ALL in the product field. The total_rows field tells you how many contract rows were returned.
Does the API return intraday or tick-level data for LNG futures?+
No. The API covers end-of-day settlement records only, including OHLC prices, settlement, volume, and open interest per contract month. Intraday price data is not currently exposed. You can fork this API on Parse and revise it to add an intraday endpoint if that data becomes available on the exchange.
How do I find out what date range of historical data is available?+
Call get_products. The response includes a date_range object with min_eod and max_eod fields that indicate the earliest and latest trading dates for which settlement data exists. Use max_eod to confirm data freshness before querying.
Does the API cover options, spreads, or other derivative types beyond futures?+
Currently the API covers LNG futures settlement data across the 14 listed product codes. Options contracts and calendar spread instruments are not exposed. You can fork this API on Parse and revise it to add endpoints for those contract types if they appear in Abaxx Exchange market data.
Page content last updated . Spec covers 2 endpoints from abaxx.exchange.
Related APIs in FinanceSee all →
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
13f.info API
13f.info API
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.