fetch_bop_data
Retrieve time series data from the IMF Balance of Payments database by specifying frequency, country, indicator, and date range.
Instructions
Retrieves compact format time series data from the BOP database based on the input parameters.
Args:
freq (str): Frequency (e.g., "A" for annual, "Q" for quarterly, "M" for monthly).
country (str): Country code, multiple country codes can be connected with "+".
indicator (str): Indicator code.
start (str | int): Start year.
end (str | int): End year.
Returns:
str: Description of the queried data. Do not perform further analysis or retry if the query fails.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| freq | Yes | ||
| country | Yes | ||
| indicator | Yes | ||
| start | Yes | ||
| end | Yes |