Logo
AXION

Economic Datasets Data

GET/econ/dataset/:id

Retrieves the complete historical time series data for a specific dataset ID. Returns all observations including revisions history (multiple realtime periods). Essential for backtesting and historical analysis.

Path Parameters

ParameterTypeRequiredDescription
idstringRequiredSeries ID obtained from the search endpoint (e.g., "PMAIZMTUSDM")

Examples:

https://api.axionquant.com/econ/dataset/GDP
https://api.axionquant.com/econ/dataset/UNRATE?from=2020-01-01&to=2024-12-31

Response Fields

realtimeStart string

ISO 8601 timestamp of real-time period start

date string

ISO 8601 timestamp of observation date

value number

Economic indicator value (may be null for missing data)

|

Dataset by ID

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4dataset = client.econ.dataset('PMAIZMTUSDM')
5print(dataset)

Response

[
  {
    "realtimeStart": "2015-03-13T00:00:00.000Z",
    "date": "1971-01-01T00:00:00.000Z",
    "value": 63.4
  },
  {
    "realtimeStart": "2015-03-13T00:00:00.000Z",
    "date": "1971-02-01T00:00:00.000Z",
    "value": 63.6
  },
  {
    "realtimeStart": "2015-03-13T00:00:00.000Z",
    "date": "1971-03-01T00:00:00.000Z",
    "value": 62
  },
  {
    "realtimeStart": "2015-03-13T00:00:00.000Z",
    "date": "1971-04-01T00:00:00.000Z",
    "value": 60.8
  }
]

News API

The News API provides real-time access to financial and general news articles from global sources. This API supports filtering by company ticker, country, or category, making it essential for staying informed about market-moving events, corporate developments, and macroeconomic trends.

GET/news/:ticker

Retrieves recent news articles specifically related to a company by its ticker symbol. This endpoint automatically converts the ticker to the company's full name and fetches relevant news from financial and general news sources.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "TSLA", "MSFT")

Examples:

https://api.axionquant.com/news/AAPL
https://api.axionquant.com/news/TSLA

Response Fields

title string

Article headline

link string

Encoded URL to the full article

summary string

Article summary or excerpt

published string

Publication date (RFC 1123 format)

|

Company News

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4news = client.news.company('AAPL')
5print(news)

Response

[
  {
    "title": "Apple spent 2025 setting itself up for the future - and its biggest moves weren't about AI - Yahoo Finance",
    "link": "https://api.axionquant.com/news/article/aHR0cHM6Ly9uZXdzLmdvb2dsZS5jb20vcnNzL2FydGljbGVzL0NCTWl6d0ZCVlY5NWNVeE5OblZDV1VwbVMxTnhaVlZRYVd4VlRqQk9XR1ZOTWxFM1UxaFdiRjlXYld4elNDMWlVVk5IYWxKT1pFbGhWbmc1TlZKRlEycHJNMHBKYjNGeGMyUXlPRTAzZGxGNFRGaFRiVUZWTUhveGRsRk9Va2M1YmxKV2R6RTFSbkV4VDBKV1pHTmtNMVJ6TVRsV00xaFZjbWRwYVRsUFJYbEdRbGRMU3pWMFVrZGZUVFJzZFdkWE9Vb3lUSGgyT0hZMlZWQTROM2R5YUhkb1pVczJiM0JLVVV0d2FuUk5RalpKTUZacVpITm9WamhXVEhOamVVaG9WMnhMZGt4dFUxWk1hV2szVlZaUlJ6bERhekE_b2M9NQ",
    "summary": "Apple spent 2025 setting itself up for the future - and its biggest moves weren't about AI  Yahoo Finance",
    "published": "Wed, 24 Dec 2025 09:05:43 GMT"
  },
  {
    "title": "Apple Just Released a New AI Model. Should You Buy AAPL Stock Here? - Barchart.com",
    "link": "https://api.axionquant.com/news/article/aHR0cHM6Ly9uZXdzLmdvb2dsZS5jb20vcnNzL2FydGljbGVzL0NCTWlyd0ZCVlY5NWNVeE9aRVV6TkZoTWJqbFpiRzV2YTI4MlFsUnFjMGhxVldSbU0waFZWek5SU0d4WlRsRkdaRWg0YW05Rk9IcFBUbFE0WTNJMlNDMUxOMk5oYjJ4SGEzQktNMGhqUmpkd2NWOUVWelpWY3pCZmFWcHVhemhFVTA5RFpuSlBlbkJEV0hGV2FtNUxXV1ZaTW1GUE9GWkljSGxzU0hWNGFrZHFiVk41U2psQ2RFOXplRk52YmpVM1dXSTJTa3hWWVZZd1VsVmZTM1pCY21wR05ubHdTWEY2T1RneGIwbHBNVWhLYVZWSj9vYz01",
    "summary": "Apple Just Released a New AI Model. Should You Buy AAPL Stock Here?  Barchart.com",
    "published": "Tue, 23 Dec 2025 16:00:03 GMT"
  }
]
GET/news/country/:country

Retrieves news articles filtered by country. This endpoint provides localized news coverage, making it ideal for tracking regional developments, local market news, and country-specific economic reports.

Path Parameters

ParameterTypeRequiredDescription
countrystringRequiredCountry name

Examples:

https://api.axionquant.com/news/country/US
https://api.axionquant.com/news/country/GB

Available Countries

🇺🇸
america
🇬🇧
uk
🇨🇦
canada
🇨🇳
china
🇭🇰
hongkong
🇩🇪
germany
🇮🇳
india
🇯🇵
japan
🇸🇬
singapore
🇦🇺
australia
🇰🇷
korea
🇸🇦
ksa
🇲🇽
mexico

Response Fields

Same structure as Company News response.

title string

Article headline

link string

Encoded URL to the full article

summary string

Article summary or excerpt

published string

Publication date (RFC 1123 format)

|

News by Country

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4news = client.news.country('US')
5print(news)

Response

[
  {
    "title": "Trump Live Updates: DOJ Says It Has Found 1 Million More Epstein Files - The New York Times",
    "link": "https://api.axionquant.com/news/article/aHR0cHM6Ly9uZXdzLmdvb2dsZS5jb20vcnNzL2FydGljbGVzL0NCTWlZMEZWWDNseFRFOTFiMVIzWVhseE1YbE1TSGd3YW1sSFpFcFdiRmhTWjJWTWNYTmtlRmxQWkdGeGN6SlBXSFp3UzFwTExYTlViRGxYWlRKTFRUVjBiVmgwYlUxVWJtUjVla3BYVEhrd1dqaEdXV1l3YUVSSFVrcGxRVTU0YkdvMFFUVlNVUT9vYz01",
    "summary": "Trump Live Updates: DOJ Says It Has Found 1 Million More Epstein Files  The New York Times\nNews Wrap: DOJ says over a million more Epstein documents discovered  PBS\n'It's perpetuated this news cycle': Frustration mounts in Trump's orbit about messaging on latest Epstein documents  CNN\nTakeaways from the 3rd Epstein files release: The president, the plane and the prince  NBC News\nDOJ says more than 1 million potential Epstein files newly uncovered  CNBC",
    "published": "Wed, 24 Dec 2025 21:31:18 GMT"
  }
]