fetch_gfsmab_data
Retrieve time series data from the GFSMAB database by specifying frequency, country, unit, indicator, and date range. Use this tool to access compact format economic data for analysis.
Instructions
Retrieves compact format time series data from the GFSMAB database based on the input parameters.
Args:
freq (str): Frequency (e.g., "A" for annual).
country (str): Country code, multiple country codes can be connected with "+".
unit (str): Unit code XDC or XDC_R_B1GQ (Percent of GDP).
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 |
---|---|---|---|
country | Yes | ||
end | Yes | ||
freq | Yes | ||
indicator | Yes | ||
start | Yes | ||
unit | Yes |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"title": "Country",
"type": "string"
},
"end": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "End"
},
"freq": {
"title": "Freq",
"type": "string"
},
"indicator": {
"title": "Indicator",
"type": "string"
},
"start": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Start"
},
"unit": {
"title": "Unit",
"type": "string"
}
},
"required": [
"freq",
"country",
"unit",
"indicator",
"start",
"end"
],
"title": "fetch_gfsmab_dataArguments",
"type": "object"
}