I have 4 seperate URL query strings for Japan-only quarterly data across various datasets/providers that all work fine individually (CSV format):
OECD: EO - JPN, [ALL SERIES], QUARTERLY
https://api.db.nomics.world/v22/series/OECD/EO?limit=1000&offset=0&q=&observations=1&align_periods=1&dimensions={“FREQUENCY”:[“Q”],“LOCATION”:[“JPN”]}&format=csv
OECD: MEI - JPN, [ALL SERIES], QUARTERLY
https://api.db.nomics.world/v22/series/OECD/MEI?limit=1000&offset=0&q=&observations=1&align_periods=1&dimensions={“FREQUENCY”:[“Q”],“LOCATION”:[“JPN”]}&format=csv
IMF: IFS - JP, [ALL SERIES], QUARTERLY
https://api.db.nomics.world/v22/series/IMF/IFS?limit=1000&offset=0&q=&observations=1&align_periods=1&dimensions={“FREQ”:[“Q”],“REF_AREA”:[“JP”]}&format=csv
BIS Property prices: long series - Japan, QUARTERLY
https://api.db.nomics.world/v22/series/BIS/long_pp?limit=1000&offset=0&q=&observations=1&align_periods=1&dimensions={“FREQ”:[“Q”],“REF_AREA”:[“JP”]}&format=csv
If I wanted to combine these into 1 single query string and say dump ALL data from over common period 1970Q1-LatestQ, its not clear from the API doc/guide exactly how to combine the URL query - some elements will be common & so can avoid being duplicated. My numerous attempts have been unsuccessful so far. (I presume any combined URL could only be at a common frequency ie we couldn’t combine Quarterly & Annual data in same URL ?)
Any pointers on combination syntax would be v welcome