https://datahelp.imf.org/knowledgebase/articles/630877-api
Project description
OpenBB IMF Provider Extension
This package adds the openbb-imf provider extension to the Open Data Platform by OpenBB.
It provides everything you need - endpoints, tools, and metadata - to access and explore the entirety of https://data.imf.org, without any previous experience working with it.
Installation
Install from PyPI with:
pip install openbb-imf
Then build the Python static assets by running:
openbb-build
Quick Start
The fastest way to get started is by connecting to the OpenBB Workspace as a custom backend.
Start Server
openbb-api
This starts the FastAPI server over localhost on port 6900.
Add to Workspace
See the documentation here for more details.
Click to Open App
Once added, click on the app to open the dashboard.
The dashboard contains widgets with metadata and information, as well ones for exploring and retrieving the data.
Implementation Details
IMF is a SDMX API, and they organize their data by "dataflows". You can think of these as databases. Each one has their own definitions for parameters and output. Some definitions are shared, others are domain-specific. In SDMX, query models are expressed as dimensions, and data models as attributes.
The extension comes with a base level of metadata used for normalizing, translating, and validating inputs and outputs. When mapping requires a code list that is not included, a network request is made to retrieve it.
User input is validated by calling the constraints API for each dimension. The cached metadata contains all the potential values for parameters, but the availability of each is determined by other choices - country, frequency, etc. When making the actual request for data, parameters are tested for compatibility in the sequence defined by the data structure definition. Invalid parameter combinations are returned as helpful error messages with descriptions of what went wrong and what the valid choices are.
The output converts ID codes into human-readable labels, and includes dataset and series metadata in a separate object.
Indicators
In this library, we refer to indicators as "indicator-like" dimensions within individual dataflows.
It includes dimensions like COICOP_1999, so items such as CPI All Items, or Clothing and footwear,
are considered.
The IMF codes for these values - _T, CP01, etc. - are used to construct ticker-like symbols.
Presentation Tables
Presentation tables are built from hierarchical code lists defining the parent-child relationship between individual series.
Internally, table IDs are prefixed with H_ - i.e, H_BOP_BOP_AGG_STANDARD_PRESENTATION.
The symbology allows entering references to tables, or indicators.
Symbology
The Open Data Platform generally refers to all time series IDs as a symbol.
Requesting time series data or presentation tables requires a symbol constructed from
the dataflow ID and the indicator-like dimensions, split with ::.
CPI::CPI returns all series for CPI under the TYPE_OF_INDEX dimension.
CPI::CPI_CP01 returns just component of CPI, Food and non-alcoholic beverages.
The symbol mapper matches the items after :: intelligently to its corresponding dimension.
Entering, CPI::CP01, gets the same result as, CPI::CPI_CP01.
CPI::CPI__T returns just the top-level, All Items.
CPI::H_CPI_BY_COMPONENT returns the entire presentation table, Consumer Price Index (CPI) by Component.
Use, obb.imf_utils.list_tables(), for a list of tables and their symbol.
Use, obb.economy.available_indicators(provider='imf', query='), to search for, or list all, individual time series and symbols.
This example lists all the indicators in the CPI and PI dataflows.
from openbb import obb
indicators = obb.economy.available_indicators(provider="imf", dataflows="CPI,PI")
print(indicators.to_dict("records"))
...
{'symbol_root': 'CP01',
'symbol': 'CPI::CP01',
'description': 'Food and non-alcoholic beverages',
'agency_id': 'IMF.STA',
'dataflow_id': 'CPI',
'dataflow_name': 'Consumer Price Index (CPI)',
'structure_id': 'DSD_CPI',
'dimension_id': 'COICOP_1999',
'long_description': 'Food and non-alcholoic beverages consumer price index is produced using prices related to food items and non-alcoholic beverages such as fresh produce, packaged foods, and beverages excluding alcoholic drinks, aggregated by their respective consumer expenditure weights.',
'member_of': ['CPI::H_CPI_BY_COMPONENT']},
...
Coverage
All data available from https://data.imf.org/en/Data-Explorer can be retrieved, via obb.economy.indicators(provider='imf', **kwargs).
Additionally, there are endpoints for some Port Watch items (not part of the Data Explorer).
The extension creates a router path, imf_utils, that exposes utility functions for UI integrations and metadata lookup.
Endpoints
obb.economy.available_indicatorsobb.economy.indicatorsobb.economy.cpiobb.economy.direction_of_tradeobb.economy.shipping.chokepoint_infoobb.economy.shipping.chokepoint_volumeobb.economy.shipping.port_infoobb.economy.shipping.port_volumeobb.imf_utils.get_dataflow_dimensionsobb.imf_utils.list_dataflow_choicesobb.imf_utils.list_dataflowsobb.imf_utils.list_indicators_by_dataflowobb.imf_utils.list_port_id_choicesobb.imf_utils.list_table_choicesobb.imf_utils.list_tablesobb.imf_utils.presentation_tableobb.imf_utils.presentation_table_choices
"Choices" endpoints are utilized by OpenBB Workspace to populate widget dropdown menus.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openbb_imf-2.0.0.tar.gz.
File metadata
- Download URL: openbb_imf-2.0.0.tar.gz
- Upload date:
- Size: 3.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.11 Darwin/25.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcfe190536e02ed8be5f8ace0c961aef2c9c83f1cbdeb0a498dc37f7a1bf86ba
|
|
| MD5 |
885142695fc10d18717f6a12eebc64cb
|
|
| BLAKE2b-256 |
9f640ee06407a45d0c5ef7e1fb46c8a510841a1b6d8f346627cdee862a4f0d78
|
File details
Details for the file openbb_imf-2.0.0-py3-none-any.whl.
File metadata
- Download URL: openbb_imf-2.0.0-py3-none-any.whl
- Upload date:
- Size: 3.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.11 Darwin/25.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7581289d484ced01809562d3f18695779a8613ba54f1009d2e0192cb9363177e
|
|
| MD5 |
85687a1e97731e6a85ef1c151125fcd7
|
|
| BLAKE2b-256 |
6afbd829e2863b3a2ebac69706c8bcbeaf302c72bad7e45380c95aa715c57f0c
|