Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.financialdatapi.com/countries/{idOrIso}/available-indicators \ --header 'x-api-key: <api-key>'
import requests url = "https://api.financialdatapi.com/countries/{idOrIso}/available-indicators" headers = {"x-api-key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}}; fetch('https://api.financialdatapi.com/countries/{idOrIso}/available-indicators', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": [ "<unknown>" ], "meta": { "request_id": "<string>", "requestId": "<string>", "api_version": "<string>", "pagination": { "limit": 123, "cursor": "<string>", "next_cursor": "<string>", "has_more": true } }, "requestId": "<string>" }
{ "error": { "code": "<string>", "message": "<string>", "request_id": "<string>", "requestId": "<string>", "details": "<unknown>" }, "requestId": "<string>" }
1 <= x <= 500
asc
desc
Indicators with publicly displayable observations for a country, plus explicitly modelled internal-only derived series carrying availability and availabilityReason; genuinely empty or rights-gated raw series are omitted
Show child attributes