BETA You’re on the new LongtermTrends. Share feedback

No results found

API

LongtermTrends API Documentation v1.0

Access All Historical Data Through Our REST API

1079 API Endpoints 49 Pages REST API Standard

Quickstart Guide

  1. 1
    Get your API Key: available for Max members on your profile page.
  2. 2
    Find an Endpoint: browse the list below or use the search bar to find the data you need (e.g. /data-inflation/).
  3. 3
    Make a Request: use the code examples provided for your chosen language, inserting your API key in the authorization header.

Authentication

To authenticate your requests, include an Authorization header with the format: Api-Key YOUR_API_KEY

Authorization: Api-Key your-secret-api-key-here

Response Format

Successful requests return a JSON array, where each element is another array containing the date and the value.

[
    ["2023-01-01", 6.4],
    ["2023-02-01", 6.0]
]

Filter & Search

API Endpoints

Bitcoin vs. Gold

Chart
Bitcoin / Gold Ratio (logarithmic scale)
Series
Bitcoin/Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin / Gold Ratio (linear)
Series
Bitcoin/Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. Gold since 1792
Series
Bitcoin
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. Gold since 1792
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-since-1792/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Bitcoin and Gold
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-gold-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-gold-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-gold-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Bitcoin vs. M2 Money Supply

Chart
Bitcoin / M2 Money Supply Ratio (logarithmic scale)
Series
Bitcoin/M2
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-m2-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-m2-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-m2-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin / M2 Money Supply Ratio (linear)
Series
Bitcoin/M2
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-m2-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-m2-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-m2-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. M2 Money Supply Price Changes
Series
Bitcoin
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. M2 Money Supply Price Changes
Series
M2 Money Stock
curl -X GET "https://www.longtermtrends.com/community/api/data/data-m2-money-stock/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-m2-money-stock/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-m2-money-stock/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Bitcoin and M2 Money Supply
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-m2-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-m2-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-m2-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Bitcoin vs. Nasdaq 100

Chart
Bitcoin / Nasdaq 100 Ratio (logarithmic scale)
Series
Bitcoin/Nasdaq
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-nasdaq-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-nasdaq-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-nasdaq-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin / Nasdaq 100 Ratio (linear)
Series
Bitcoin/Nasdaq
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-nasdaq-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-nasdaq-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-nasdaq-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. Nasdaq 100 Price Changes
Series
Bitcoin
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. Nasdaq 100 Price Changes
Series
Nasdaq 100
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nasdaq-100-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nasdaq-100-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nasdaq-100-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Bitcoin and Nasdaq 100
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-nasdaq-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-nasdaq-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-vs-nasdaq-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. Nasdaq 100 Market Capitalization
Series
Bitcoin Market Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin-market-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin-market-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin-market-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin vs. Nasdaq 100 Market Capitalization
Series
Nasdaq 100 Market Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nasdaq-market-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nasdaq-market-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nasdaq-market-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Bond Yield Credit Spreads

Chart
Yield Spread between Baa Corporate and US Treasury Bonds
Series
Yield Spread between Baa Corporate and Treasury Bonds
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-baa-US10y-yield-spread/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-baa-US10y-yield-spread/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-baa-US10y-yield-spread/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Spread between Baa and Aaa Corporate Bonds
Series
Yield Spread between Baa and Aaa Corporate Bonds
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-baa-aaa-yield-spread/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-baa-aaa-yield-spread/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-baa-aaa-yield-spread/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Spread between Aaa Corporate and US Treasury Bonds
Series
Yield Spread between Aaa Corporate and Treasury Bonds
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-aaa-US10y-yield-spread/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-aaa-US10y-yield-spread/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-aaa-US10y-yield-spread/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Spread between Mortgages and US Treasury Bonds
Series
Yield Spread between Mortgages and Treasury Bonds
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mortgage-yield-US10Y-yield-spread/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mortgage-yield-US10Y-yield-spread/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mortgage-yield-US10Y-yield-spread/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yields Overview
Series
US 10y Treasury Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yields Overview
Series
Aaa Corporate Bond Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-aaa-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-aaa-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-aaa-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yields Overview
Series
Baa Corporate Bond Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-baa-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-baa-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-baa-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yields Overview
Series
30-Year Fixed Rate Mortgage Average
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mortgage-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mortgage-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mortgage-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Breaking Down US Inflation

Chart
US (Expected & Actual) Inflation Rates
Series
5-Year Breakeven Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-5Y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-5Y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-5Y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US (Expected & Actual) Inflation Rates
Series
10-Year Breakeven Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US (Expected & Actual) Inflation Rates
Series
(Actual) 12-month CPI Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI Components
Series
Shelter (36.2% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-shelter-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-shelter-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-shelter-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI Components
Series
Commodities Less Food and Energy Commodities (18.5% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-for-commodities-less-food-energy-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-for-commodities-less-food-energy-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-for-commodities-less-food-energy-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI Components
Series
Transportation Services (6.5% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-transportation-services-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-transportation-services-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-transportation-services-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI Components
Series
Medical Care Services (6.4% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-medical-care-services-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-medical-care-services-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-medical-care-services-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI Components
Series
Education and Communication (4.9% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-education-communication-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-education-communication-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-education-communication-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI Components
Series
Food (13.3% of CPI) - excluded in Core Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-food-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-food-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-food-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI Components
Series
Energy (7.0% of CPI) - excluded in Core Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-energy-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-energy-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-energy-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Commodity Futures

Chart
Precious Metals
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-gold/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-gold/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-gold/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Precious Metals
Series
Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-silver/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-silver/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-silver/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Precious Metals
Series
Palladium
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-palladium/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-palladium/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-palladium/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Precious Metals
Series
Platinum
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-platinum/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-platinum/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-platinum/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Base Metals
Series
Aluminum
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-aluminum/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-aluminum/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-aluminum/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Base Metals
Series
Copper
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-copper/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-copper/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-copper/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Energy
Series
Crude Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-crude-oil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-crude-oil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-crude-oil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Energy
Series
Brent Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-brent-oil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-brent-oil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-brent-oil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Energy
Series
Natural Gas
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-natural-gas/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-natural-gas/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-natural-gas/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Energy
Series
Heating Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-heating-oil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-heating-oil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-heating-oil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Grains & Soybean Products
Series
Corn
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-corn/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-corn/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-corn/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Grains & Soybean Products
Series
Chicago SRW Wheat
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-wheat/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-wheat/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-wheat/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Grains & Soybean Products
Series
Oat
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-oat/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-oat/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-oat/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Grains & Soybean Products
Series
Rough Rice
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-rough-rice/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-rough-rice/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-rough-rice/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Grains & Soybean Products
Series
Soybean
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-soybean/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-soybean/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-soybean/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Grains & Soybean Products
Series
Soybean Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-soybean-oil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-soybean-oil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-soybean-oil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Soft Commodities
Series
Cocoa
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-cocoa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-cocoa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-cocoa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Soft Commodities
Series
Coffee
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-coffee/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-coffee/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-coffee/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Soft Commodities
Series
Cotton
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-cotton/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-cotton/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-cotton/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Soft Commodities
Series
Sugar
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-sugar/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-sugar/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-sugar/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Soft Commodities
Series
Orange Juice
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-orange/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-orange/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-orange/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Dairy Products
Series
Cheese
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-cheese/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-cheese/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-cheese/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Dairy Products
Series
Butter
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-butter/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-butter/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-butter/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Dairy Products
Series
Whey
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-whey/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-whey/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-whey/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Dairy Products
Series
Class 3 Milk
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-class-3-milk/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-class-3-milk/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-class-3-milk/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Dairy Products
Series
Non-Fat Dry Milk
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-non-fat-dry-milk/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-non-fat-dry-milk/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-non-fat-dry-milk/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Livestock
Series
Lean Hogs
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-lean-hogs/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-lean-hogs/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-lean-hogs/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Livestock
Series
Live Cattle
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-live-cattle/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-live-cattle/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-live-cattle/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Commodities
Series
Correlation Heat Map for Commodities
curl -X GET "https://www.longtermtrends.com/community/api/data/data-commodities-correlation-heatmap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-commodities-correlation-heatmap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-commodities-correlation-heatmap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Commodities
Series
Correlation Heat Map for Commodities
curl -X GET "https://www.longtermtrends.com/community/api/data/data-commodities-correlation-heatmap-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-commodities-correlation-heatmap-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-commodities-correlation-heatmap-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Commodities
Series
Correlation Spanning Tree for Commodities
curl -X GET "https://www.longtermtrends.com/community/api/data/data-commodities-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-commodities-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-commodities-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Commodities
Series
Correlation Spanning Tree for Commodities
curl -X GET "https://www.longtermtrends.com/community/api/data/data-commodities-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-commodities-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-commodities-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Copper Gold Ratio

Chart
Copper / Gold Ratio
Series
Copper/Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. Copper
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-since-1850/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-since-1850/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-since-1850/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. Copper
Series
Copper
curl -X GET "https://www.longtermtrends.com/community/api/data/data-copper-since-1850/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-copper-since-1850/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-copper-since-1850/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Cryptocurrencies

Chart
Payment Cryptocurrencies
Series
Bitcoin (BTC-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-btc-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-btc-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-btc-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Payment Cryptocurrencies
Series
Litecoin (LTC-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-ltc-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-ltc-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-ltc-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Payment Cryptocurrencies
Series
XRP (XRP-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-xrp-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-xrp-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-xrp-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Payment Cryptocurrencies
Series
Bitcoin Cash (BCH-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-bch-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-bch-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-bch-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Payment Cryptocurrencies
Series
Stellar (XLM-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-xlm-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-xlm-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-xlm-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Payment Cryptocurrencies
Series
Monero (XMR-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-xmr-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-xmr-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-xmr-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Ethereum (ETH-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-eth-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-eth-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-eth-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Solana (SOL-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-sol-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-sol-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-sol-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Cardano (ADA-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-ada-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-ada-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-ada-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Avalanche (AVAX-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-avax-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-avax-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-avax-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Tron (TRX-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-trx-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-trx-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-trx-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Toncoin (TON11419-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-ton-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-ton-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-ton-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Cosmos (ATOM-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-atom-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-atom-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-atom-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Near Protocol (NEAR-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-near-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-near-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-near-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Smart Contract Platforms
Series
Ethereum Classic (ETC-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-etc-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-etc-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-etc-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Web3 Tokens
Series
Chainlink (LINK-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-link-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-link-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-link-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Web3 Tokens
Series
Polkadot (DOT-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-dot-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-dot-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-dot-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Web3 Tokens
Series
Internet Computer (ICP-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-icp-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-icp-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-icp-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Web3 Tokens
Series
Injective (INJ-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-inj-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-inj-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-inj-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Web3 Tokens
Series
Stacks (STX4847-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-stx-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-stx-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-stx-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Web3 Tokens
Series
Filecoin (FIL-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-fil-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-fil-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-fil-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Exchange Tokens
Series
BNB - Binance (BNB-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-bnb-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-bnb-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-bnb-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Exchange Tokens
Series
Unus Sed Leo - Bitfinex (LEO-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-leo-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-leo-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-leo-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Exchange Tokens
Series
OKB - OKEx (OKB-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-okb-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-okb-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-okb-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Exchange Tokens
Series
Cronos - Crypto.com (CRO-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-cro-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-cro-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-cro-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Memes Tokens
Series
Dogecoin (DOGE-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-doge-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-doge-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-doge-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Memes Tokens
Series
Shiba Inu (SHIB-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-shib-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-shib-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-shib-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
DeFi Tokens
Series
Uniswap (UNI7083-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-uni-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-uni-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-uni-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
DeFi Tokens
Series
Lido Dao (LDO-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-ldo-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-ldo-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-ldo-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Layer 2 Solutions
Series
Polygon (MATIC)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-matic-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-matic-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-matic-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Layer 2 Solutions
Series
Immutable (IMX10603-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-imx-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-imx-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-imx-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Layer 2 Solutions
Series
Optimism (OP-USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yfin-op-usd/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yfin-op-usd/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yfin-op-usd/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for CryptoCurrencies
Series
Correlation Heat Map for CryptoCurrencies
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for CryptoCurrencies
Series
Correlation Heat Map for CryptoCurrencies
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Cryptocurrencies
Series
Correlation Spanning Tree for Cryptocurrencies
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Cryptocurrencies
Series
Correlation Spanning Tree for Cryptocurrencies
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cryptocurrencies-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Cyclical vs. Defensive Stocks

Chart
MSCI USA Cyclical Sectors / MSCI USA Defensive Sectors
Series
MSCI Cyclical / MSCI Defensive
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA Cyclical Sectors vs. MSCI USA Defensive Sectors
Series
MSCI USA Cyclical Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-cyclical-stocks/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-cyclical-stocks/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-cyclical-stocks/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA Cyclical Sectors vs. MSCI USA Defensive Sectors
Series
MSCI USA Defensive Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-defensive-stocks/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-defensive-stocks/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-defensive-stocks/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Cyclical and Defensive Sectors
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Developed Markets

Chart
Scandinavian Countries
Series
Denmark
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-denmark/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-denmark/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-denmark/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Scandinavian Countries
Series
Finland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-finland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-finland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-finland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Scandinavian Countries
Series
Norway
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-norway/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-norway/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-norway/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Scandinavian Countries
Series
Sweden
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-sweden/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-sweden/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-sweden/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern European Countries
Series
Italy
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-italy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-italy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-italy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern European Countries
Series
Spain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-spain/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-spain/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-spain/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern European Countries
Series
Portugal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-portugal/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-portugal/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-portugal/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western European Countries
Series
France
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-france/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-france/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-france/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western European Countries
Series
Belgium
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-belgium/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-belgium/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-belgium/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western European Countries
Series
Netherlands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-netherlands/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-netherlands/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-netherlands/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western European Countries
Series
Ireland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-ireland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-ireland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-ireland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western European Countries
Series
United Kingdom
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central European Countries
Series
Austria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-austria/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-austria/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-austria/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central European Countries
Series
Germany
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-germany/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-germany/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-germany/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central European Countries
Series
Switzerland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-switzerland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-switzerland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-switzerland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asia-Pacific
Series
Australia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-australia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-australia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-australia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asia-Pacific
Series
HongKong
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-hongkong/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-hongkong/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-hongkong/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asia-Pacific
Series
Japan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-japan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-japan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-japan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asia-Pacific
Series
NewZealand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-newzealand/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-newzealand/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-newzealand/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asia-Pacific
Series
Singapore
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-singapore/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-singapore/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-singapore/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North America and Middle East
Series
United States
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North America and Middle East
Series
Canada
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-canada/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-canada/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-canada/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North America and Middle East
Series
Israel
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-israel/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-israel/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-israel/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Developed Market Indices
Series
Correlation Heat Map for Developed Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-developed-markets-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-developed-markets-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-developed-markets-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Developed Market Indices
Series
Correlation Heat Map for Developed Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-developed-markets-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-developed-markets-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-developed-markets-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Developed Market Indices
Series
Correlation Spanning Tree for Developed Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-developed-markets-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-developed-markets-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-developed-markets-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Developed Market Indices
Series
Correlation Spanning Tree for Developed Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-developed-markets-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-developed-markets-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-developed-markets-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Dow to Gold Ratio

Chart
Dow Jones / Gold Ratio (log) since 1792
Series
Dow/Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Dow Jones / Gold Ratio (linear) since 1792
Series
Dow/Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
DJIA vs. Gold
Series
Dow Jones
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-since-1789/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-since-1789/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-since-1789/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
DJIA vs. Gold
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-since-1792/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Dow and Gold
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-vs-gold-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-vs-gold-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-vs-gold-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Emerging vs. Developed Markets

Chart
MSCI Emering Markets / MSCI World
Series
MSCI Emering Markets / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Emerging vs. Developed Markets
Series
MSCI Emerging Markets
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Emerging vs. Developed Markets
Series
MSCI World (Developed Markets)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Emerging and Developed Markets
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Ethereum vs. Bitcoin

Chart
Ether / Bitcoin Ratio
Series
Ether / Bitcoin Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ethereum-to-bitcoin-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ethereum-to-bitcoin-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ethereum-to-bitcoin-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Ether vs. Bitcoin
Series
Ether
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ethereum/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ethereum/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ethereum/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Ether vs. Bitcoin
Series
Bitcoin
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Ethereum and Bitcoin
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ethereum-vs-bitcoin-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ethereum-vs-bitcoin-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ethereum-vs-bitcoin-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Factor Investing

Chart
MSCI World Momentum / MSCI World
Series
MSCI World Momentum / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Quality / MSCI World
Series
MSCI World Quality / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-quality-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-quality-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-quality-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Growth / MSCI World
Series
MSCI World Growth / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-growth-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-growth-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-growth-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Value / MSCI World
Series
MSCI World Value / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-value-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-value-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-value-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Small Cap / MSCI World
Series
MSCI World Small Cap / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Minimum Volatility / MSCI World
Series
MSCI World Minimum Volatility / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-minimum-volatility-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-minimum-volatility-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-minimum-volatility-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World High Dividend Yield / MSCI World
Series
MSCI World High Dividend Yield / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Buyback Yield / MSCI World
Series
MSCI World Buyback Yield / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Total Shareholder Yield / MSCI World
Series
MSCI World Total Shareholder Yield / MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-total-share-holder-yield-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-total-share-holder-yield-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-total-share-holder-yield-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Momentum
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-momentum/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Quality
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-quality/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-quality/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-quality/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-growth/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-growth/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-growth/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Value
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-value/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-value/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-value/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Small Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Minimum Volatility Index (USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-minimum-volatility/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-minimum-volatility/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-minimum-volatility/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World High Dividend Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Buyback Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview
Series
MSCI World Total Shareholder Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Momentum (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Quality (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-quality-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-quality-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-quality-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Growth (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-growth-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-growth-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-growth-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Value (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-value-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-value-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-value-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Small Cap (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Minimum Volatility Index (USD) (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-minimum-volatility-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-minimum-volatility-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-minimum-volatility-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World High Dividend Yield (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Buyback Yield (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices – Overview (Gross Total Return)
Series
MSCI World Total Shareholder Yield (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for MSCI Factor Indices
Series
Correlation Heat Map for MSCI Factor Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for MSCI Factor Indices
Series
Correlation Heat Map for MSCI Factor Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for MSCI Factor Indices
Series
Correlation Spanning Tree for MSCI Factor Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for MSCI Factor Indices
Series
Correlation Spanning Tree for MSCI Factor Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-factor-indices-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Fama And French 5 Factor Model

Chart
Fama & French 5 Factors Indices Comparison
Series
Fama & French 5 Factor Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-fama-and-french-5-factor-model-indices/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-fama-and-french-5-factor-model-indices/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-fama-and-french-5-factor-model-indices/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Fama & French 5 Factors Percentage Change Comparison
Series
Fama & French 5 Factor Monthly Returns
curl -X GET "https://www.longtermtrends.com/community/api/data/data-fama-and-french-5-factor-model-percentage-change/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-fama-and-french-5-factor-model-percentage-change/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-fama-and-french-5-factor-model-percentage-change/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Foreign Exchange Rates

Chart
Major Global Currencies
Series
Euro to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-EURUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-EURUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-EURUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies
Series
Japanese Yen to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-JPYUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-JPYUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-JPYUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies
Series
Chinese Yuan to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-CNYUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-CNYUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-CNYUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies
Series
British Pound to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-GBPUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-GBPUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-GBPUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies
Series
Canadian Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-CADUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-CADUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-CADUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies
Series
Australian Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-AUDUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-AUDUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-AUDUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies
Series
Swiss Franc to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-CHFUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-CHFUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-CHFUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies
Series
New Zealand Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-NZDUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-NZDUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-NZDUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asian Emerging Market Currencies (Trading with USD)
Series
South Korean Won to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-KRWUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-KRWUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-KRWUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asian Emerging Market Currencies (Trading with USD)
Series
Thai Baht to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-THBUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-THBUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-THBUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asian Emerging Market Currencies (Trading with USD)
Series
Taiwan Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-TWDUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-TWDUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-TWDUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asian Emerging Market Currencies (Trading with USD)
Series
Singapore Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-SGDUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-SGDUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-SGDUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asian Emerging Market Currencies (Trading with USD)
Series
Hong Kong Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-HKDUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-HKDUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-HKDUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asian Emerging Market Currencies (Trading with USD)
Series
Indian Rupee to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-INRUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-INRUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-INRUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Asian Emerging Market Currencies (Trading with USD)
Series
Indonesian Rupiah to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-IDRUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-IDRUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-IDRUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin American Currencies (Trading with USD)
Series
Mexican Peso to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-MXNUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-MXNUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-MXNUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin American Currencies (Trading with USD)
Series
Brazilian Real to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-BRLUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-BRLUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-BRLUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin American Currencies (Trading with USD)
Series
Argentine Peso to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ARSUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ARSUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ARSUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nordic and Baltic Currencies (Trading with USD)
Series
Swedish Krona to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-SEKUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-SEKUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-SEKUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nordic and Baltic Currencies (Trading with USD)
Series
Norwegian Krone to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-NOKUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-NOKUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-NOKUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nordic and Baltic Currencies (Trading with USD)
Series
Danish Krone to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-DKKUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-DKKUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-DKKUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nordic and Baltic Currencies (Trading with USD)
Series
Icelandic Króna to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ISKUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ISKUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ISKUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern European Currencies (Trading with USD)
Series
Bulgarian Lev to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-BGNUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-BGNUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-BGNUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern European Currencies (Trading with USD)
Series
Czech Koruna to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-CZKUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-CZKUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-CZKUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern European Currencies (Trading with USD)
Series
Hungarian Forint to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-HUFUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-HUFUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-HUFUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern European Currencies (Trading with USD)
Series
Polish Zloty to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-PLNUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-PLNUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-PLNUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern European Currencies (Trading with USD)
Series
Romanian Leu to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-RONUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-RONUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-RONUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern European Currencies (Trading with USD)
Series
Russian Ruble to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-RUBUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-RUBUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-RUBUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern European Currencies (Trading with USD)
Series
Ukrainian Hryvnia to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-UAHUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-UAHUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-UAHUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other Asian Currencies (Trading with USD)
Series
Malaysian Ringgit to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-MYRUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-MYRUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-MYRUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other Asian Currencies (Trading with USD)
Series
Philippine Peso to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-PHPUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-PHPUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-PHPUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other Asian Currencies (Trading with USD)
Series
Sri Lankan Rupee to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-LKRUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-LKRUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-LKRUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
African and Middle Eastern Currencies (Trading with USD)
Series
South African Rand to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ZARUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ZARUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ZARUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
African and Middle Eastern Currencies (Trading with USD)
Series
Turkish Lira to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-TRYUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-TRYUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-TRYUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
African and Middle Eastern Currencies (Trading with USD)
Series
Israeli New Shekel to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ILSUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ILSUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ILSUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
African and Middle Eastern Currencies (Trading with USD)
Series
Namibian Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-NADUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-NADUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-NADUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
African and Middle Eastern Currencies (Trading with USD)
Series
Egyptian Pound to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-EGPUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-EGPUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-EGPUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Foreign Exchange Rates
Series
Correlation Heat Map for Foreign Exchange Rates
curl -X GET "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Foreign Exchange Rates
Series
Correlation Heat Map for Foreign Exchange Rates
curl -X GET "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Exchange Rates (with USD)
Series
Correlation Spanning Tree for Exchange Rates (with USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Exchange Rates (with USD)
Series
Correlation Spanning Tree for Exchange Rates (with USD)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-foreign-exchange-rate-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Gold to Oil Ratio

Chart
Gold / Oil Ratio
Series
Gold/Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Oil vs. Gold
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Oil vs. Gold
Series
Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-oil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-oil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-oil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Oil vs. Volatility
Series
Gold/Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Oil vs. Volatility
Series
S&P 500 VIX
curl -X GET "https://www.longtermtrends.com/community/api/data/data-vix/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-vix/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-vix/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Oil vs. Volatility
Series
S&P 100 VXO (Pre 1990)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-vxo/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-vxo/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-vxo/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Gold and Oil
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-vs-oil-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-vs-oil-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-vs-oil-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Gold to Silver Ratio

Chart
Gold / Silver Ratio since 1693
Series
Gold/Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. Silver
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-since-1792/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. Silver
Series
Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/data-silver-since-1791/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-silver-since-1791/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-silver-since-1791/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Silver vs. US Dollar Index
Series
Gold/Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Silver vs. US Dollar Index
Series
US Dollar Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dollar-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dollar-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dollar-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Silver vs. US Dollar Index
Series
US Dollar Index (Discontinued) + 16
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dollar-index-old/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dollar-index-old/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dollar-index-old/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Gold and Silver
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-vs-silver-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-vs-silver-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-vs-silver-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Gold vs. Real Yields

Chart
Gold vs. (inverted) Real 10-Year Treasury Yield
Series
Gold Price
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-since-1792/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. (inverted) Real 10-Year Treasury Yield
Series
Real 10-Year (Expected) Treasury Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. (inverted) Real Yields
Series
Gold Price
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-since-1792/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. (inverted) Real Yields
Series
Real 1-Year Treasury Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-real-interest-rate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-real-interest-rate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-real-interest-rate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. (inverted) Real Yields
Series
Real 10-Year Treasury Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-real-10-year-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-real-10-year-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-real-10-year-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Gold and Real Yields
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-vs-real-yield-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-vs-real-yield-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-vs-real-yield-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Growth vs. Value Stocks

Chart
MSCI Growth/Value
Series
Growth/Value Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth-vs-value/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth-vs-value/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth-vs-value/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Growth vs. Value Stocks
Series
MSCI USA Growth Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Growth vs. Value Stocks
Series
MSCI USA Value Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-value/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-value/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-value/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Growth and Value Stocks
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-large-cap-growth-vs-value-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-large-cap-growth-vs-value-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-large-cap-growth-vs-value-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Home Price to Income Ratio

Chart
Home Price / Median Household Income Ratio
Series
Home Price / Median Household Income Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price-median-annual-income-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price-median-annual-income-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price-median-annual-income-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Home Price / Average Personal Income
Series
Home Price / Average Personal Income
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price-average-income-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price-average-income-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price-average-income-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Case-Shiller Home Price Index vs. US Annual Income
Series
Case-Shiller Home Price Index (* 1800$)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Case-Shiller Home Price Index vs. US Annual Income
Series
Median Household Income ($)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-median-household-income/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-median-household-income/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-median-household-income/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Case-Shiller Home Price Index vs. US Annual Income
Series
Average Personal Income ($)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-average-income/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-average-income/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-average-income/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Large-cap vs. Small-cap Stocks

Chart
MSCI Large-cap/Small-cap
Series
MSCI Large-cap/Small-cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-large-cap-to-small-cap-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-large-cap-to-small-cap-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-large-cap-to-small-cap-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Large-cap vs. Small-cap Stocks
Series
MSCI USA All Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-all-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-all-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-all-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Large-cap vs. Small-cap Stocks
Series
MSCI USA Large Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-large-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-large-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-large-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Large-cap vs. Small-cap Stocks
Series
MSCI USA Mid Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-mid-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-mid-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-mid-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Large-cap vs. Small-cap Stocks
Series
MSCI USA Small Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-small-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-small-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-small-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Large-cap vs. Small-cap Stocks
Series
MSCI USA Micro Cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-micro-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-micro-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-micro-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Small-cap/Large-cap vs. Inflation Expectations
Series
Small-cap/Large-cap
curl -X GET "https://www.longtermtrends.com/community/api/data/data-small-cap-vs-large-cap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-small-cap-vs-large-cap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-small-cap-vs-large-cap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Small-cap/Large-cap vs. Inflation Expectations
Series
10-Year Breakeven Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-10-year-breakeven-inflation-rate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-10-year-breakeven-inflation-rate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-10-year-breakeven-inflation-rate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Large-Cap and Small-Cap Stocks
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-large-cap-vs-small-cap-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-large-cap-vs-small-cap-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-large-cap-vs-small-cap-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

M2 Money Supply

Chart
M2 yearly growth vs. inflation
Series
M2 Growth Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-m2-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-m2-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-m2-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
M2 yearly growth vs. inflation
Series
Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
M2 Money Supply vs. Consumer Price Index (CPI) vs. GDP
Series
M2 Money Stock
curl -X GET "https://www.longtermtrends.com/community/api/data/data-m2-money-stock/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-m2-money-stock/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-m2-money-stock/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
M2 Money Supply vs. Consumer Price Index (CPI) vs. GDP
Series
Consumer Price Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cpi/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cpi/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cpi/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
M2 Money Supply vs. Consumer Price Index (CPI) vs. GDP
Series
GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Velocity of M2 Money Stock
Series
M2 Velocity (GDP/M2 Money Stock)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gdp-m2-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gdp-m2-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gdp-m2-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Market-cap Weight vs. Equal Weight

Chart
MSCI USA / MSCI USA Equal Weighted
Series
MSCI USA / MSCI USA Equal Weighted
curl -X GET "https://www.longtermtrends.com/community/api/data/data-market-cap-weight-vs-equal-weight-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-market-cap-weight-vs-equal-weight-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-market-cap-weight-vs-equal-weight-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA vs. MSCI USA Equal Weithed
Series
MSCI USA (Market-cap Weighted)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA vs. MSCI USA Equal Weithed
Series
MSCI USA Equal Weighted
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-equal-weighted/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-equal-weighted/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-equal-weighted/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Market Weight and Equal Weight
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-equal-vs-market-cap-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-equal-vs-market-cap-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-equal-vs-market-cap-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Mining Stocks vs. Gold & Silver

Chart
BGMI vs. XAU vs. Gold vs. Silver
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
BGMI vs. XAU vs. Gold vs. Silver
Series
Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/data-silver2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-silver2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-silver2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
BGMI vs. XAU vs. Gold vs. Silver
Series
BGMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mining-stocks/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mining-stocks/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mining-stocks/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
BGMI vs. XAU vs. Gold vs. Silver
Series
XAU
curl -X GET "https://www.longtermtrends.com/community/api/data/data-xau/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-xau/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-xau/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
BGMI / Gold Ratio
Series
BGMI/Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mining-stocks-to-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mining-stocks-to-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mining-stocks-to-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
XAU / Gold Ratio
Series
XAU/Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-xau-to-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-xau-to-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-xau-to-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
BGMI&XAU / Gold Ratio
Series
BGMI&XAU / Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mining-stocks-to-gold-ratio2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mining-stocks-to-gold-ratio2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mining-stocks-to-gold-ratio2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Between XAU and Gold
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-vs-xau-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-vs-xau-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-vs-xau-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

MSCI Country Indices

Chart
Northern Europe
Series
Denmark
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-denmark/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-denmark/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-denmark/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Northern Europe
Series
Finland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-finland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-finland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-finland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Northern Europe
Series
Norway
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-norway/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-norway/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-norway/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Northern Europe
Series
Sweden
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-sweden/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-sweden/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-sweden/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Northern Europe
Series
Estonia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-estonia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-estonia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-estonia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Northern Europe
Series
Lithuania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-lithuania/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-lithuania/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-lithuania/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western Europe
Series
France
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-france/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-france/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-france/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western Europe
Series
Belgium
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-belgium/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-belgium/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-belgium/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western Europe
Series
Netherlands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-netherlands/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-netherlands/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-netherlands/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western Europe
Series
Ireland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-ireland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-ireland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-ireland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Western Europe
Series
United Kingdom
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central Europe
Series
Austria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-austria/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-austria/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-austria/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central Europe
Series
Germany
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-germany/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-germany/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-germany/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central Europe
Series
Switzerland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-switzerland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-switzerland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-switzerland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central Europe
Series
Czech Republic
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-czech-republic/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-czech-republic/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-czech-republic/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern Europe
Series
Italy
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-italy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-italy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-italy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern Europe
Series
Portugal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-portugal/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-portugal/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-portugal/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern Europe
Series
Spain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-spain/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-spain/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-spain/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern Europe
Series
Greece
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-greece/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-greece/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-greece/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southern Europe
Series
Turkey
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-turkey/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-turkey/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-turkey/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Balkans
Series
Bosnia and Herzegovina
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bosnia-and-herzegovina/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bosnia-and-herzegovina/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bosnia-and-herzegovina/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Balkans
Series
Bulgaria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bulgaria/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bulgaria/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bulgaria/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Balkans
Series
Romania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-romania/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-romania/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-romania/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Balkans
Series
Serbia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-serbia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-serbia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-serbia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Balkans
Series
Croatia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-croatia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-croatia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-croatia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Balkans
Series
Slovenia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-slovenia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-slovenia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-slovenia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East
Series
Israel
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-israel/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-israel/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-israel/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East
Series
Lebanon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-lebanon/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-lebanon/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-lebanon/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East
Series
Jordan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-jordan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-jordan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-jordan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East
Series
Oman
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-oman/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-oman/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-oman/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gulf States
Series
Bahrain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bahrain/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bahrain/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bahrain/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gulf States
Series
Kuwait
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-kuwait/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-kuwait/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-kuwait/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gulf States
Series
Saudi Arabia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-saudi-arabia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-saudi-arabia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-saudi-arabia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gulf States
Series
United Arab Emirates
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-uae/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-uae/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-uae/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gulf States
Series
Qatar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-qatar/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-qatar/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-qatar/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North Africa
Series
Morocco
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-morocco/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-morocco/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-morocco/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North Africa
Series
Tunisia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-tunisia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-tunisia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-tunisia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North Africa
Series
Egypt
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-egypt/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-egypt/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-egypt/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other African Markets
Series
South Africa
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-south-africa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-south-africa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-south-africa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other African Markets
Series
Nigeria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-nigeria/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-nigeria/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-nigeria/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other African Markets
Series
Kenya
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-kenya/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-kenya/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-kenya/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other African Markets
Series
Senegal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-senegal/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-senegal/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-senegal/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other African Markets
Series
Zimbabwe
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-zimbabwe/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-zimbabwe/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-zimbabwe/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Other African Markets
Series
Mauritius
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-mauritius/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-mauritius/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-mauritius/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
India
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-india/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-india/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-india/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Pakistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-pakistan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-pakistan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-pakistan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Bangladesh
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bangladesh/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bangladesh/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bangladesh/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Sri Lanka
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-sri-lanka/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-sri-lanka/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-sri-lanka/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Kazakhstan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-kazakhstan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-kazakhstan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-kazakhstan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Indonesia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-indonesia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-indonesia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-indonesia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Malaysia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-malaysia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-malaysia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-malaysia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Philippines
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-philippines/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-philippines/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-philippines/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Thailand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-thailand/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-thailand/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-thailand/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Vietnam
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-vietnam/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-vietnam/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-vietnam/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Singapore
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-singapore/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-singapore/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-singapore/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East Asia
Series
China
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-china/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-china/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-china/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East Asia
Series
Korea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-korea/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-korea/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-korea/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East Asia
Series
Taiwan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-taiwan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-taiwan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-taiwan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East Asia
Series
Japan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-japan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-japan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-japan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East Asia
Series
Hong Kong
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-hongkong/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-hongkong/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-hongkong/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Australasia
Series
Australia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-australia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-australia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-australia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Australasia
Series
New Zealand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-newzealand/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-newzealand/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-newzealand/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Brazil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-brazil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-brazil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-brazil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Chile
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-chile/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-chile/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-chile/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Colombia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-colombia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-colombia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-colombia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Peru
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-peru/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-peru/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-peru/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Mexico
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-mexico/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-mexico/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-mexico/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Argentina
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-argentina/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-argentina/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-argentina/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Caribbean
Series
Jamaica
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-jamaica/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-jamaica/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-jamaica/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Caribbean
Series
Trinidad and Tobago
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-trinidad-and-tobago/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-trinidad-and-tobago/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-trinidad-and-tobago/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe
Series
Poland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-poland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-poland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-poland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe
Series
Hungary
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-hungary/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-hungary/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-hungary/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe
Series
Ukraine
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-ukraine/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-ukraine/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-ukraine/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North America
Series
Canada
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-canada/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-canada/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-canada/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
North America
Series
USA
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for MSCI Country Indices
Series
Correlation Heat Map for MSCI Country Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-country-indices-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for MSCI Country Indices
Series
Correlation Heat Map for MSCI Country Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-country-indices-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for MSCI Country Indices
Series
Correlation Spanning Tree for MSCI Country Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-country-indices-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for MSCI Country Indices
Series
Correlation Spanning Tree for MSCI Country Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-country-indices-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-country-indices-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

MSCI Emerging Markets

Chart
Central and Eastern Europe
Series
Czech Republic
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-czech-republic/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-czech-republic/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-czech-republic/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern Europe
Series
Greece
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-greece/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-greece/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-greece/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern Europe
Series
Hungary
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-hungary/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-hungary/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-hungary/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern Europe
Series
Poland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-poland/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-poland/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-poland/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Central and Eastern Europe
Series
Turkey
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-turkey/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-turkey/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-turkey/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Indonesia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-indonesia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-indonesia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-indonesia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Malaysia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-malaysia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-malaysia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-malaysia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Philippines
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-philippines/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-philippines/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-philippines/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Southeast Asia
Series
Thailand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-thailand/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-thailand/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-thailand/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East and South Asia
Series
Korea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-korea/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-korea/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-korea/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East and South Asia
Series
Taiwan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-taiwan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-taiwan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-taiwan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East and South Asia
Series
China
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-china/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-china/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-china/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
East and South Asia
Series
India
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-india/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-india/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-india/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and Africa
Series
Egypt
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-egypt/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-egypt/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-egypt/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and Africa
Series
Kuwait
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-kuwait/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-kuwait/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-kuwait/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and Africa
Series
Qatar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-qatar/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-qatar/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-qatar/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and Africa
Series
Saudi Arabia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-saudi-arabia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-saudi-arabia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-saudi-arabia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and Africa
Series
United Arab Emirates
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-uae/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-uae/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-uae/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and Africa
Series
South Africa
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-south-africa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-south-africa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-south-africa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Brazil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-brazil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-brazil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-brazil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Chile
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-chile/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-chile/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-chile/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Colombia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-colombia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-colombia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-colombia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Peru
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-peru/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-peru/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-peru/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America
Series
Mexico
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-mexico/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-mexico/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-mexico/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Emerging Market Indices
Series
Correlation Heat Map for Emerging Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Emerging Market Indices
Series
Correlation Heat Map for Emerging Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Emerging Market Indices
Series
Correlation Spanning Tree for Emerging Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Emerging Market Indices
Series
Correlation Spanning Tree for Emerging Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-emerging-markets-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

MSCI Frontier Markets

Chart
Eastern Europe - Balkans
Series
Bosnia and Herzegovina
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bosnia-and-herzegovina/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bosnia-and-herzegovina/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bosnia-and-herzegovina/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe - Balkans
Series
Bulgaria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bulgaria/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bulgaria/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bulgaria/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe - Balkans
Series
Croatia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-croatia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-croatia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-croatia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe - Balkans
Series
Romania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-romania/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-romania/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-romania/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe - Balkans
Series
Serbia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-serbia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-serbia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-serbia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Eastern Europe - Balkans
Series
Slovenia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-slovenia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-slovenia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-slovenia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Baltic and Eastern Europe
Series
Estonia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-estonia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-estonia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-estonia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Baltic and Eastern Europe
Series
Lithuania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-lithuania/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-lithuania/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-lithuania/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Baltic and Eastern Europe
Series
Ukraine
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-ukraine/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-ukraine/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-ukraine/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and North Africa
Series
Lebanon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-lebanon/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-lebanon/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-lebanon/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and North Africa
Series
Morocco
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-morocco/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-morocco/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-morocco/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and North Africa
Series
Jordan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-jordan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-jordan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-jordan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and North Africa
Series
Oman
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-oman/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-oman/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-oman/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and North Africa
Series
Bahrain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bahrain/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bahrain/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bahrain/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Middle East and North Africa
Series
Tunisia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-tunisia/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-tunisia/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-tunisia/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Sub-Saharan Africa
Series
Kenya
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-kenya/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-kenya/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-kenya/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Sub-Saharan Africa
Series
Nigeria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-nigeria/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-nigeria/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-nigeria/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Sub-Saharan Africa
Series
Senegal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-senegal/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-senegal/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-senegal/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Sub-Saharan Africa
Series
Zimbabwe
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-zimbabwe/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-zimbabwe/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-zimbabwe/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Sub-Saharan Africa
Series
Mauritius
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-mauritius/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-mauritius/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-mauritius/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Bangladesh
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-bangladesh/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-bangladesh/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-bangladesh/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Kazakhstan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-kazakhstan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-kazakhstan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-kazakhstan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Pakistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-pakistan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-pakistan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-pakistan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Sri Lanka
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-sri-lanka/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-sri-lanka/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-sri-lanka/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
South and Central Asia
Series
Vietnam
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-vietnam/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-vietnam/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-vietnam/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America and the Caribbean
Series
Argentina
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-argentina/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-argentina/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-argentina/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America and the Caribbean
Series
Jamaica
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-jamaica/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-jamaica/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-jamaica/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Latin America and the Caribbean
Series
Trinidad and Tobago
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-trinidad-and-tobago/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-trinidad-and-tobago/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-trinidad-and-tobago/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Frontier Market Indices
Series
Correlation Heat Map for Frontier Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for Frontier Market Indices
Series
Correlation Heat Map for Frontier Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Frontier Market Indices
Series
Correlation Spanning Tree for Frontier Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for Frontier Market Indices
Series
Correlation Spanning Tree for Frontier Market Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-frontier-markets-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Nasdaq to S&P 500 Ratio

Chart
Nasdaq / S&P 500
Series
Nasdaq / S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ndx-to-spx-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ndx-to-spx-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ndx-to-spx-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nasdaq Composite vs. S&P 500
Series
Nasdaq Composite
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nasdaq-composite-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nasdaq-composite-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nasdaq-composite-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nasdaq Composite vs. S&P 500
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1970/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1970/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1970/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Nasdaq and S&P 500
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nasdaq-vs-sp500-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nasdaq-vs-sp500-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nasdaq-vs-sp500-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Real Estate to Gold Ratio

Chart
Shiller Case Home Price Index / Gold Ratio
Series
Home Price Index / Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-real-estate-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-real-estate-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-real-estate-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. Home Prices
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-since-1792/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-since-1792/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold vs. Home Prices
Series
Case-Shiller Home Price Index (* 1800$)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Home Prices and Gold
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-real-estate-vs-gold-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-real-estate-vs-gold-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-real-estate-vs-gold-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

S&P 500 Dividend Yield

Chart
S&P 500 Dividend Yield (Inverted, logarithmic)
Series
Dividend Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dividend-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dividend-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dividend-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

S&P 500 PE Ratio

Chart
S&P 500 Price Earnings Ratio
Series
S&P 500 PE Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-price-earnings-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-price-earnings-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-price-earnings-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Shiller S&P 500 PE Ratio
Series
Shiller PE Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-shiller-price-earnings-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-shiller-price-earnings-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-shiller-price-earnings-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Stocks to Commodities Ratio

Chart
S&P 500 / Producer Price Index (log)
Series
SP500/PPI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-commodities/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-commodities/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-commodities/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. PPI
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. PPI
Series
PPI (Producer Price Index)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-commodities/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-commodities/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-commodities/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between S&P500 and Producer Price Index
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-stocks-vs-commodities-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-stocks-vs-commodities-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-stocks-vs-commodities-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Stocks vs. Bonds

Chart
S&P 500 Index / Total Return Bond Index
Series
S&P 500 / Total Return Bond Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-to-bonds-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-to-bonds-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-to-bonds-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. Total Return Bond Index
Series
Total Return Bond Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. Total Return Bond Index
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index / Total Return Bond Index (log)
Series
Total Return Stock Index / Total Return Bond Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-return-stocks-to-bonds-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-return-stocks-to-bonds-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-return-stocks-to-bonds-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. S&P 500 vs. Bonds
Series
Total Return Stock Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-total-return/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-total-return/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-total-return/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. S&P 500 vs. Bonds
Series
Total Return Bond Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. S&P 500 vs. Bonds
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Stocks and Bonds
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-stocks-vs-bonds-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-stocks-vs-bonds-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-stocks-vs-bonds-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Stocks vs. Gold and Silver

Chart
SP500 vs. Dow Jones vs. Gold vs. Silver
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
SP500 vs. Dow Jones vs. Gold vs. Silver
Series
Dow Jones
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-jones/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-jones/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-jones/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
SP500 vs. Dow Jones vs. Gold vs. Silver
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
SP500 vs. Dow Jones vs. Gold vs. Silver
Series
Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/data-silver2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-silver2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-silver2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. Gold & Silver
Series
Total Return Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-total-return/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-total-return/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-total-return/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. Gold & Silver
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1896/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. Gold & Silver
Series
Dow Jones
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-jones/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-jones/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-jones/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. Gold & Silver
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total Return Stock Index vs. Gold & Silver
Series
Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/data-silver2/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-silver2/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-silver2/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between S&P 500 and Gold
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-vs-sp500-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-vs-sp500-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-vs-sp500-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Stocks vs. Real Estate

Chart
S&P 500 Index / Case-Shiller Home Price Index (log)
Series
S&P 500 / Home Price (log)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-home-price-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-home-price-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-home-price-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. Home Prices
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. Home Prices
Series
Case-Shiller Home Price Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Stocks and RealEstate
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-stocks-vs-real-estate-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-stocks-vs-real-estate-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-stocks-vs-real-estate-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

The 60/40 Portfolio

Chart
60/40 Stocks-to-Bonds Portfolio
Series
60/40 Stocks-to-Bonds Portfolio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-60-40-stocks-bonds-portfolio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-60-40-stocks-bonds-portfolio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-60-40-stocks-bonds-portfolio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. 60/40 Portfolio vs. Bonds
Series
Total Return Bond Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-return-bond-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. 60/40 Portfolio vs. Bonds
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. 60/40 Portfolio vs. Bonds
Series
60/40 Portfolio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-60-40-stocks-bonds-portfolio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-60-40-stocks-bonds-portfolio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-60-40-stocks-bonds-portfolio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between Stocks and Bonds
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-stocks-vs-bonds-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-stocks-vs-bonds-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-stocks-vs-bonds-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

The Buffett Indicator: Market Cap to GDP

Chart
Total value of all publicly-traded stocks / GDP Ratio
Series
Wilshire 5000 to GDP Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-wilshire-gdp-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-wilshire-gdp-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-wilshire-gdp-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Total value of public and private corporate equities / GDP Ratio
Series
Total value of public and private equities/GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-equities-gdp-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-equities-gdp-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-equities-gdp-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Dow Jones / GDP Ratio
Series
DOW/GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-gdp-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-gdp-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-gdp-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
SP500 / GDP Ratio
Series
SP500/GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-gdp-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-gdp-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-gdp-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. Wilshire 5000 vs. GDP
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1871/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. Wilshire 5000 vs. GDP
Series
Wilshire 5000
curl -X GET "https://www.longtermtrends.com/community/api/data/data-wilshire-5000/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-wilshire-5000/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-wilshire-5000/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. Wilshire 5000 vs. GDP
Series
GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

The Business Cycle

Chart
S&P 500 Yearly Growth
Series
S&P 500 Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US GDP Yearly Growth
Series
US GDP Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-us-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-us-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-us-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Loans & Leases Yearly Growth
Series
Loans & Leases Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-loans-and-leases-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-loans-and-leases-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-loans-and-leases-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Consumer Opinion Survey
Series
Consumer Opinion Survey
curl -X GET "https://www.longtermtrends.com/community/api/data/data-oecd-consumer-opinion-survey/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-oecd-consumer-opinion-survey/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-oecd-consumer-opinion-survey/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Composite Leading Indicator
Series
Composite Leading Indicator
curl -X GET "https://www.longtermtrends.com/community/api/data/data-oecd-composite-indicator/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-oecd-composite-indicator/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-oecd-composite-indicator/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nonfarm Payrolls (Workers in US Economy) Yearly Growth
Series
Nonfarm Payrolls (Workers in US Economy) Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nonfarm-payrolls-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nonfarm-payrolls-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nonfarm-payrolls-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Unemployment Rate
Series
US Unemployment Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-unemployment-rate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-unemployment-rate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-unemployment-rate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Initial Unemployment Claims
Series
Initial Unemployment Claims
curl -X GET "https://www.longtermtrends.com/community/api/data/data-initial-unemployment-claims/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-initial-unemployment-claims/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-initial-unemployment-claims/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Sahm Rule Recession Indicator
Series
Sahm Rule Recession Indicator
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sahm-rule/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sahm-rule/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sahm-rule/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Crude Oil Yearly Growth
Series
Crude Oil Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-oil-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-oil-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-oil-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Producer Price Index Yearly Growth
Series
Producer Price Index Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ppi-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ppi-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ppi-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold Price Yearly Growth
Series
Gold Price Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Copper to Gold Ratio
Series
Copper to Gold Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Fed Funds Rate
Series
Fed Funds Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-fed-funds/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-fed-funds/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-fed-funds/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Curve: Spread between 10-Year and 1-Year Yield
Series
Yield Curve: Spread between 10-Year and 1-Year Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us01y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us01y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-minus-us01y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Real 1-Year Interest Rate
Series
Real 1-Year Interest Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-real-interest-rate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-real-interest-rate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-real-interest-rate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
M2 Money Supply Yearly Growth
Series
M2 Money Supply Yearly Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-m2-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-m2-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-m2-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
(Government) Total Public Debt to GDP Ratio
Series
(Government) Total Public Debt to GDP Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA / MSCI USA Equal Weighted
Series
MSCI USA / MSCI USA Equal Weighted
curl -X GET "https://www.longtermtrends.com/community/api/data/data-market-cap-weight-vs-equal-weight-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-market-cap-weight-vs-equal-weight-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-market-cap-weight-vs-equal-weight-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Cyclical / MSCI Defensive Sectors
Series
MSCI Cyclical / MSCI Defensive Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

The Real Home Price

Chart
Case-Shiller Index / CPI
Series
Case-Shiller Index / CPI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price-cpi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price-cpi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price-cpi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Case-Shiller Index vs. CPI
Series
Case-Shiller Index (2000=100)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Case-Shiller Index vs. CPI
Series
CPI (1983=100)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cpi/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cpi/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cpi/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

The Real Interest Rate

Chart
Nominal and Real 1-Year Interest Rates vs. (Actual) Inflation
Series
Nominal 1-Year Treasury Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us01y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us01y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us01y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal and Real 1-Year Interest Rates vs. (Actual) Inflation
Series
Inflation Rate (previous 12 months)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal and Real 1-Year Interest Rates vs. (Actual) Inflation
Series
Real 1-Year Interest Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-real-interest-rate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-real-interest-rate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-real-interest-rate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal and Real 10-Year Interest Rates vs. (Expected) Inflation
Series
Nominal 10-Year Treasury Constant Maturity Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-fred/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-fred/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-fred/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal and Real 10-Year Interest Rates vs. (Expected) Inflation
Series
10-Year Expected Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal and Real 10-Year Interest Rates vs. (Expected) Inflation
Series
Real 10-Year Inflation-Adjusted Interest Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Thematic Investing: Megatrends

Chart
ACWI IMI Robotics / ACWI IMI
Series
ACWI IMI Robotics / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-robotics-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-robotics-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-robotics-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Cybersecurity / ACWI IMI
Series
ACWI IMI Cybersecurity / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-cybersecurity-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-cybersecurity-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-cybersecurity-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Digital Economy / ACWI IMI
Series
ACWI IMI Digital Economy / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-digital-economy-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-digital-economy-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-digital-economy-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Disruptive Technology / ACWI IMI
Series
ACWI IMI Disruptive Technology / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-disruptive-technology-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-disruptive-technology-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-disruptive-technology-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Future Mobility / ACWI IMI
Series
ACWI IMI Future Mobility / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-future-mobility-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-future-mobility-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-future-mobility-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Next Generation Internet Innovation / ACWI IMI
Series
ACWI IMI Next Generation Internet Innovation / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-next-gen-internet-innova-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-next-gen-internet-innova-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-next-gen-internet-innova-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Autonomous Tech and Industrial Innovation / ACWI IMI
Series
ACWI IMI Autonomous Tech and Industrial Innovation / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-autonom-tech-and-industrial-inno-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-autonom-tech-and-industrial-inno-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-autonom-tech-and-industrial-inno-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Fintech Innovation / ACWI IMI
Series
ACWI IMI Fintech Innovation / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-fintech-innovation-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-fintech-innovation-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-fintech-innovation-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World IMI Space Exploration / MSCI World IMI
Series
MSCI World IMI Space Exploration / MSCI World IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-space-exploration-to-world-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-space-exploration-to-world-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-imi-space-exploration-to-world-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Smart Security and Defense Index / ACWI IMI
Series
ACWI IMI Smart Security and Defense Index / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-smart-security-and-defense-index-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-smart-security-and-defense-index-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-smart-security-and-defense-index-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World IMI Blockchain Economy / MSCI World IMI
Series
MSCI World IMI Blockchain Economy / MSCI World IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-blockchain-economy-to-msci-world-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-blockchain-economy-to-msci-world-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-imi-blockchain-economy-to-msci-world-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World IMI Clean Energy Infrastructure 30 Index / MSCI World IMI
Series
MSCI World IMI Clean Energy Infrastructure 30 Index / MSCI World IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-clean-energy-infrastructure-to-world-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-clean-energy-infrastructure-to-world-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-imi-clean-energy-infrastructure-to-world-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Efficient Energy / ACWI IMI
Series
ACWI IMI Efficient Energy / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-efficient-energy-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-efficient-energy-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-efficient-energy-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Sustainable Water Transition / ACWI IMI
Series
ACWI IMI Sustainable Water Transition / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-sustainable-water-transition-extended-capped-index-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-sustainable-water-transition-extended-capped-index-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-sustainable-water-transition-extended-capped-index-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Hydrogen Future Fuels / ACWI IMI
Series
ACWI IMI Hydrogen Future Fuels / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-hydrogen-and-fuel-index-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-hydrogen-and-fuel-index-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-hydrogen-and-fuel-index-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Genomic Innovation / ACWI IMI
Series
ACWI IMI Genomic Innovation / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-genomic-innovation-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-genomic-innovation-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-genomic-innovation-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Digital Health Index / ACWI IMI
Series
ACWI IMI Digital Health Index / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-digital-health-index-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-digital-health-index-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-digital-health-index-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Virology / ACWI IMI
Series
ACWI IMI Virology / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-virology-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-virology-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-virology-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Immuno Oncology Index / ACWI IMI
Series
ACWI IMI Immuno Oncology Index / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-immuno-oncology-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-immuno-oncology-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-immuno-oncology-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Biotech Advance Index / ACWI IMI
Series
ACWI IMI Biotech Advance Index / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-biotech-advanced-index-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-biotech-advanced-index-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-biotech-advanced-index-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Smart Cities / ACWI IMI
Series
ACWI IMI Smart Cities / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-smart-cities-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-smart-cities-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-smart-cities-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Ageing Society Opportunities / ACWI IMI
Series
ACWI IMI Ageing Society Opportunities / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-ageing-society-opportunity-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-ageing-society-opportunity-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-ageing-society-opportunity-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Millennials / ACWI IMI
Series
ACWI IMI Millennials / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-millennials-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-millennials-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-millennials-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Future Education / ACWI IMI
Series
ACWI IMI Future Education / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-future-education-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-future-education-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-future-education-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
ACWI IMI Food Revolution Index / ACWI IMI
Series
ACWI IMI Food Revolution Index / ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-acwi-imi-food-revolution-index-to-acwi-imi-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-acwi-imi-food-revolution-index-to-acwi-imi-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-acwi-imi-food-revolution-index-to-acwi-imi-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI WORLD IMI
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-imi/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-imi/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-imi/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Robotics
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-robotics/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-robotics/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-robotics/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Cybersecurity
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-cybersecurity/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-cybersecurity/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-cybersecurity/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Digital Economy
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-digital-economy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-digital-economy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-digital-economy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Disruptive Technology
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-disruptive-technology/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-disruptive-technology/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-disruptive-technology/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Future Mobility
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-future-mobility/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-future-mobility/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-future-mobility/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Next Generation Internet Innovation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-next-generation-internet-innova/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-next-generation-internet-innova/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-next-generation-internet-innova/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Fintech Innovation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-fintech-innovation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-fintech-innovation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-fintech-innovation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI World IMI Space Exploration 30 Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-space-exploration-30-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-space-exploration-30-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-imi-space-exploration-30-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Smart Security Defense
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-smart-security-defense/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-smart-security-defense/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-smart-security-defense/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI BLOCKCHAIN ECONOMY 30 INDEX
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-blockchain-economy-30-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-blockchain-economy-30-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-imi-blockchain-economy-30-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI World IMI Clean Energy Infrastructure 30 Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-clean-energy-infrastructure-30-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-imi-clean-energy-infrastructure-30-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-imi-clean-energy-infrastructure-30-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Efficient Energy
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-efficient-energy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-efficient-energy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-efficient-energy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Sustainable Water Transition Extended Capped
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-sustainable-water-transition-extended-capped/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-sustainable-water-transition-extended-capped/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-sustainable-water-transition-extended-capped/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Hydrogen and Future Fuels
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-hydrogen-and-future-fuels/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-hydrogen-and-future-fuels/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-hydrogen-and-future-fuels/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Genomic Innovation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-genomic-innovation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-genomic-innovation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-genomic-innovation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Digital Health Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-digital-health-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-digital-health-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-digital-health-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Virology
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-virology/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-virology/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-virology/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Immuno Oncology
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-immuno-oncology/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-immuno-oncology/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-immuno-oncology/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Biotech Advance Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-biotech-advance-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-biotech-advance-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-biotech-advance-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Smart Cities
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-smart-cities/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-smart-cities/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-smart-cities/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Ageing Society Opportunities
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-ageing-society-opportunities/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-ageing-society-opportunities/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-ageing-society-opportunities/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Millennials
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-millennials/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-millennials/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-millennials/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Future Education
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-future-education/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-future-education/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-future-education/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Thematic Investing Indices
Series
MSCI ACWI IMI Food Revolution Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-food-revolution-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-food-revolution-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-acwi-imi-food-revolution-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for MSCI Thematic Investing Indices
Series
Correlation Heat Map for MSCI Thematic Investing Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-thematic-investing-correlation-heat-map/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-thematic-investing-correlation-heat-map/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-thematic-investing-correlation-heat-map/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for MSCI Thematic Investing Indices
Series
Correlation Heat Map for MSCI Thematic Investing Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-thematic-investing-correlation-heat-map-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-thematic-investing-correlation-heat-map-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-thematic-investing-correlation-heat-map-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for MSCI Thematic Investing Indices
Series
Correlation Spanning Tree for MSCI Thematic Investing Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-thematic-investing-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-thematic-investing-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-thematic-investing-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Spanning Tree for MSCI Thematic Investing Indices
Series
Correlation Spanning Tree for MSCI Thematic Investing Indices
curl -X GET "https://www.longtermtrends.com/community/api/data/data-thematic-investing-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-thematic-investing-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-thematic-investing-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

US Debt to GDP

Chart
(Government) Total Public Debt / GDP Ratio
Series
Total Public Debt to GDP Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Non-Financial Corporate Debt / GDP Ratio
Series
Corporate Debt to GDP Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-debt-to-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-debt-to-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-debt-to-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Household Debt / GDP Ratio
Series
Household Debt to GDP Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-household-debt-to-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-household-debt-to-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-household-debt-to-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

US Stock Market Indices

Chart
US Stock Market Indices
Series
S&P 500
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-since-1970/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-since-1970/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-since-1970/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Stock Market Indices
Series
Dow Jones
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dow-jones-since-1970/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dow-jones-since-1970/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dow-jones-since-1970/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Stock Market Indices
Series
Wilshire 5000
curl -X GET "https://www.longtermtrends.com/community/api/data/data-wilshire-5000/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-wilshire-5000/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-wilshire-5000/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Stock Market Indices
Series
Nasdaq Composite
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nasdaq-composite-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nasdaq-composite-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nasdaq-composite-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Stock Market Indices
Series
Nasdaq 100
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nasdaq-100-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nasdaq-100-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nasdaq-100-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

US Stock Market Sectors

Chart
Technology to SPY Ratio
Series
Technology to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-technology-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-technology-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-technology-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Energy to SPY Ratio
Series
Energy to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-energy-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-energy-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-energy-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Financial to SPY Ratio
Series
Financial to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-financial-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-financial-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-financial-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Consumer Staples to SPY Ratio
Series
Consumer Staples to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-consumer-staples-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-consumer-staples-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-consumer-staples-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Communication Services to SPY Ratio
Series
Communication Services to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-communication-services-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-communication-services-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-communication-services-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Basic Materials to SPY Ratio
Series
Basic Materials to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-basic-materials-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-basic-materials-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-basic-materials-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Industrial to SPY Ratio
Series
Industrial to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-industrial-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-industrial-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-industrial-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Utilities to SPY Ratio
Series
Utilities to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-utilities-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-utilities-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-utilities-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Healthcare to SPY Ratio
Series
Healthcare to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-thcare-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-thcare-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-thcare-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Consumer Discretionary to SPY Ratio
Series
Consumer Discretionary to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-consumer-discretionary-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-consumer-discretionary-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-consumer-discretionary-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Real Estate to SPY Ratio
Series
Real Estate to SPY Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-real-estate-to-spy-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-real-estate-to-spy-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-real-estate-to-spy-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for US Stock Market Sectors
Series
Correlation Heat Map for US Stock Market Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-sectors-correlation-heatmap/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-sectors-correlation-heatmap/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-sectors-correlation-heatmap/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Correlation Heat Map for US Stock Market Sectors
Series
Correlation Heat Map for US Stock Market Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-sectors-correlation-heatmap-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-sectors-correlation-heatmap-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-sectors-correlation-heatmap-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Spanning Tree for US Stock Market Sectors
Series
Spanning Tree for US Stock Market Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-sectors-minimum-spanning-tree/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-sectors-minimum-spanning-tree/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-sectors-minimum-spanning-tree/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Spanning Tree for US Stock Market Sectors
Series
Spanning Tree for US Stock Market Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-sectors-minimum-spanning-tree-last-12months/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-sectors-minimum-spanning-tree-last-12months/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-sectors-minimum-spanning-tree-last-12months/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

US Stocks vs. The World

Chart
MSCI USA / MSCI World
Series
USA / World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA vs. MSCI World
Series
MSCI USA
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA vs. MSCI World
Series
MSCI World Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
1-Year Rolling Correlation Between MSCI USA and MSCI World
Series
1-Year Rolling Correlation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-vs-world-correlation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-vs-world-correlation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-vs-world-correlation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

US Yield Curve

Chart
Spread between 30-year Yield and 10-year Yield
Series
Spread between 30-year Yield and 10-year Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us30y-minus-us10y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us30y-minus-us10y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us30y-minus-us10y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Spread between 30-year Yield and 5-year Yield
Series
Spread between 30-year Yield and 5-year Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us30y-minus-us05y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us30y-minus-us05y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us30y-minus-us05y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Spread between 10-year Yield and 2-year Yield
Series
Spread between 10-year Yield and 2-year Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Spread between 10-year Yield and 1-year Yield
Series
Spread between 10-year Yield and 1-year Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us01y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us01y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-minus-us01y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Spread between 2-year Yield and 1-year Yield
Series
Spread between 2-year Yield and 1-year Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us02y-minus-us01y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us02y-minus-us01y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us02y-minus-us01y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Spread between 10-year Yield and 3-month Yield
Series
Spread between 10-year Yield and 3-month Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us03m/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us03m/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-minus-us03m/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US03M Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us03m/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us03m/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us03m/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US01Y Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us01y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us01y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us01y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US02Y Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us02y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us02y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us02y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US03Y Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us03y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us03y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us03y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US05Y Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us05y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us05y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us05y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US10Y Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US20Y Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us20y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us20y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us20y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Constant Maturity Treasury Rates
Series
US30Y Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us30y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us30y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us30y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Weekly Macro Report

Chart
Commodity Futures Prices
Series
Gold
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-gold/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-gold/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-gold/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Commodity Futures Prices
Series
Silver
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-silver/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-silver/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-silver/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Commodity Futures Prices
Series
Palladium
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-palladium/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-palladium/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-palladium/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Commodity Futures Prices
Series
Platinum
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-platinum/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-platinum/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-platinum/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Commodity Futures Prices
Series
Aluminum
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-aluminum/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-aluminum/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-aluminum/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Commodity Futures Prices
Series
Copper
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-copper/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-copper/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-copper/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Commodity Futures Prices
Series
Crude Oil
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-crude-oil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-crude-oil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-crude-oil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Commodity Futures Prices
Series
Natural Gas
curl -X GET "https://www.longtermtrends.com/community/api/data/yfinance-futures-natural-gas/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/yfinance-futures-natural-gas/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/yfinance-futures-natural-gas/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI, PPI & UMich Inflation Expectations
Series
CPI Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI, PPI & UMich Inflation Expectations
Series
PPI Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ppi-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ppi-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ppi-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPI, PPI & UMich Inflation Expectations
Series
University of Michigan 1Y Inflation Expectations
curl -X GET "https://www.longtermtrends.com/community/api/data/data-expected-change-in-prices-mean-university-of-michigan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-expected-change-in-prices-mean-university-of-michigan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-expected-change-in-prices-mean-university-of-michigan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
University of Michigan Consumer Sentiment
Series
University of Michigan: Consumer Sentiment - Current Conditions
curl -X GET "https://www.longtermtrends.com/community/api/data/data-current-consumer-sentiment-index-university-of-michigan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-current-consumer-sentiment-index-university-of-michigan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-current-consumer-sentiment-index-university-of-michigan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
University of Michigan Consumer Sentiment
Series
University of Michigan: Consumer Sentiment - Expectations
curl -X GET "https://www.longtermtrends.com/community/api/data/data-expected-consumer-sentiment-index-university-of-michigan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-expected-consumer-sentiment-index-university-of-michigan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-expected-consumer-sentiment-index-university-of-michigan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Fed Funds Rate & Futures Implied Path
Series
Fed Funds Effective Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-fed-funds/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-fed-funds/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-fed-funds/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Fed Funds Rate & Futures Implied Path
Series
Fed Funds Futures Implied Path
curl -X GET "https://www.longtermtrends.com/community/api/data/data-fed-funds-futures/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-fed-funds-futures/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-fed-funds-futures/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Curve & Consumer Sentiment Spread
Series
Yield Curve Spread (10Y-2Y)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Curve & Consumer Sentiment Spread
Series
University of Michigan: Sentiment Spread (Expectations - Current)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-expected-minus-current-consumer-sentiment-index-university-of-michigan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-expected-minus-current-consumer-sentiment-index-university-of-michigan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-expected-minus-current-consumer-sentiment-index-university-of-michigan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Curve (10Y-2Y) and Credit Spreads (Baa-Aaa)
Series
Yield Curve (10Y-2Y)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-minus-us02y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Yield Curve (10Y-2Y) and Credit Spreads (Baa-Aaa)
Series
Credit Spreads (Baa-Aaa)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-baa-aaa-yield-spread/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-baa-aaa-yield-spread/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-baa-aaa-yield-spread/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal & Real 10-Year Rates vs. Expected Inflation
Series
Nominal 10Y Treasury
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-fred/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-fred/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-fred/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal & Real 10-Year Rates vs. Expected Inflation
Series
10Y Breakeven Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Nominal & Real 10-Year Rates vs. Expected Inflation
Series
Real 10Y Yield (TIPS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-real-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
3-Month
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us03m/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us03m/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us03m/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
1-Year
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us01y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us01y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us01y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
2-Year
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us02y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us02y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us02y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
3-Year
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us03y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us03y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us03y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
5-Year
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us05y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us05y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us05y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
10-Year
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
20-Year
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us20y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us20y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us20y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Maturities
Series
30-Year
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us30y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us30y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us30y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
M2 Yearly Growth vs. Inflation
Series
M2 Money Supply YoY Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-m2-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-m2-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-m2-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
M2 Yearly Growth vs. Inflation
Series
CPI Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Individual CPI Components (YoY %)
Series
Shelter (36.2% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-shelter-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-shelter-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-shelter-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Individual CPI Components (YoY %)
Series
Commodities Less Food and Energy Commodities (18.5% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-for-commodities-less-food-energy-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-for-commodities-less-food-energy-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-for-commodities-less-food-energy-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Individual CPI Components (YoY %)
Series
Transportation Services (6.5% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-transportation-services-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-transportation-services-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-transportation-services-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Individual CPI Components (YoY %)
Series
Medical Care Services (6.4% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-medical-care-services-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-medical-care-services-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-medical-care-services-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Individual CPI Components (YoY %)
Series
Education and Communication (4.9% of CPI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-education-communication-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-education-communication-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-education-communication-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Individual CPI Components (YoY %)
Series
Food (13.3% of CPI) - excluded in Core Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-food-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-food-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-food-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Individual CPI Components (YoY %)
Series
Energy (7.0% of CPI) - excluded in Core Inflation
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-energy-us/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-cpi-energy-us/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-cpi-energy-us/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Breakeven Inflation Rates (Priced into TIPS Bonds)
Series
5-Year Expected Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-5Y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-5Y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-5Y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Breakeven Inflation Rates (Priced into TIPS Bonds)
Series
10-Year Expected Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Breakeven Inflation Rates (Priced into TIPS Bonds)
Series
20-Year Expected Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-20Y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-20Y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-20Y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Breakeven Inflation Rates (Priced into TIPS Bonds)
Series
30-Year Expected Inflation Rate
curl -X GET "https://www.longtermtrends.com/community/api/data/data-30Y-breakeven-inflation/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-30Y-breakeven-inflation/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-30Y-breakeven-inflation/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Home Price Index
Series
Case-Shiller U.S. National Home Price Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Home Price Index
Series
Average Sales Price of Houses Sold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-average-sales-price-houses/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-average-sales-price-houses/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-average-sales-price-houses/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
US Home Price Index
Series
Median Sales Price of New Houses Sold
curl -X GET "https://www.longtermtrends.com/community/api/data/data-median-sales-price-new-houses/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-median-sales-price-new-houses/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-median-sales-price-new-houses/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin & Ethereum Price
Series
Bitcoin Price
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bitcoin/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bitcoin/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bitcoin/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Bitcoin & Ethereum Price
Series
Ethereum Price
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ethereum/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ethereum/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ethereum/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. US GDP YoY Growth
Series
S&P 500 YoY Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sp500-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sp500-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sp500-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. US GDP YoY Growth
Series
US Nominal GDP YoY Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-us-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-us-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-us-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
S&P 500 vs. US GDP YoY Growth
Series
US Real GDP YoY Growth
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yoy-us-real-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yoy-us-real-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yoy-us-real-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth (QoQ, Annualized)
Series
Real GDP (QoQ, Annualized)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-qoq-us-real-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-qoq-us-real-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-qoq-us-real-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth (QoQ, Annualized)
Series
Nominal GDP (QoQ, Annualized)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-qoq-us-nominal-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-qoq-us-nominal-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-qoq-us-nominal-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Credit Risk
Series
US 10y Treasury Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us10y/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us10y/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us10y/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Credit Risk
Series
Aaa Corporate Bond Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-aaa-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-aaa-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-aaa-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Credit Risk
Series
Baa Corporate Bond Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-baa-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-baa-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-baa-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Comparing Yields by Credit Risk
Series
30-Year Fixed Rate Mortgage Average
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mortgage-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mortgage-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mortgage-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Unemployment Claims & Rates
Series
Initial Unemployment Claims
curl -X GET "https://www.longtermtrends.com/community/api/data/data-initial-unemployment-claims/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-initial-unemployment-claims/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-initial-unemployment-claims/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Unemployment Claims & Rates
Series
Continued Claims
curl -X GET "https://www.longtermtrends.com/community/api/data/data-continued-claims/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-continued-claims/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-continued-claims/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Unemployment Claims & Rates
Series
US Unemployment Rate (U-3)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-unemployment-rate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-unemployment-rate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-unemployment-rate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Unemployment Claims & Rates
Series
Long-Term Unemployment Rate (U-1)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-u1-unemployment-rate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-u1-unemployment-rate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-u1-unemployment-rate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Debt to GDP Ratios
Series
Federal Debt to GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-public-debt-to-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Debt to GDP Ratios
Series
Corporate Debt to GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-corporate-debt-to-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-corporate-debt-to-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-corporate-debt-to-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Debt to GDP Ratios
Series
Household Debt to GDP
curl -X GET "https://www.longtermtrends.com/community/api/data/data-household-debt-to-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-household-debt-to-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-household-debt-to-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Silver vs. US Dollar Index
Series
Gold/Silver Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-silver-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Silver vs. US Dollar Index
Series
Trade Weighted U.S. Dollar Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dollar-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dollar-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dollar-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Silver vs. US Dollar Index
Series
US Dollar Index (Discontinued) + 16
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dollar-index-old/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dollar-index-old/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dollar-index-old/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Oil vs. Volatility
Series
Gold/Oil Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gold-oil-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Oil vs. Volatility
Series
S&P 500 VIX
curl -X GET "https://www.longtermtrends.com/community/api/data/data-vix/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-vix/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-vix/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gold/Oil vs. Volatility
Series
S&P 100 VXO (Pre 1990)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-vxo/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-vxo/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-vxo/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Trade Weighted U.S. Dollar Index
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dollar-index/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dollar-index/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dollar-index/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Euro to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-EURUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-EURUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-EURUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Japanese Yen to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-JPYUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-JPYUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-JPYUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Chinese Yuan to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-CNYUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-CNYUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-CNYUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
British Pound to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-GBPUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-GBPUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-GBPUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Canadian Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-CADUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-CADUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-CADUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Australian Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-AUDUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-AUDUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-AUDUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Swiss Franc to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-CHFUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-CHFUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-CHFUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
New Zealand Dollar to USD
curl -X GET "https://www.longtermtrends.com/community/api/data/data-NZDUSD/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-NZDUSD/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-NZDUSD/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Major Global Currencies vs Dollar
Series
Trade Weighted U.S. Dollar Index: Goods Only (Discontinued) + 16
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dollar-index-old/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dollar-index-old/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dollar-index-old/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
SPDR S&P 500 ETF Trust (SPY)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-spdr-sp-500-etf-trust/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-spdr-sp-500-etf-trust/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-spdr-sp-500-etf-trust/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Communication Services (XLC)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-communication-services/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-communication-services/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-communication-services/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Basic Materials
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-basic-materials/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-basic-materials/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-basic-materials/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Energy (XLE)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-energy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-energy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-energy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Financials (XLF)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-financial/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-financial/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-financial/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Industrials (XLI)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-industrial/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-industrial/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-industrial/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Technology (XLK)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-technology/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-technology/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-technology/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Consumer Staples (XLP)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-consumer-staples/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-consumer-staples/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-consumer-staples/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Utilities (XLU)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-utilities/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-utilities/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-utilities/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Health Care (XLV)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-healthcare/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-healthcare/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-healthcare/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Consumer Discretionary (XLY)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-consumer-discretionary/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-consumer-discretionary/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-consumer-discretionary/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
U.S. Stock Market Sectors Performance
Series
Real Estate (XLRE)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-real-estate/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-real-estate/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-real-estate/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Momentum (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-momentum-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Quality (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-quality-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-quality-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-quality-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Growth (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-growth-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-growth-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-growth-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Value (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-value-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-value-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-value-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Small Cap (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-small-cap-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Minimum Volatility (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-minimum-volatility-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-minimum-volatility-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-minimum-volatility-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World High Dividend Yield (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-high-dividend-yield-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Buyback Yield (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-buy-back-yield-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI World Factor Indices Performance (Gross Total Return)
Series
MSCI World Total Shareholder Yield (GROSS)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield-gross/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield-gross/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-world-total-shareholder-yield-gross/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Country Index Performance
Series
USA
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Country Index Performance
Series
United Kingdom
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-united-kingdom/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Country Index Performance
Series
Germany
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-germany/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-germany/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-germany/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Country Index Performance
Series
India
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-india/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-india/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-india/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Country Index Performance
Series
Japan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-japan/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-japan/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-japan/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Country Index Performance
Series
China
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-china/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-china/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-china/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI Country Index Performance
Series
Brazil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-brazil/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-brazil/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-brazil/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA vs. World and EM vs. World Ratios
Series
MSCI USA / World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-usa-to-world-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-usa-to-world-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-usa-to-world-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
MSCI USA vs. World and EM vs. World Ratios
Series
MSCI EM / World
curl -X GET "https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-emerging-vs-developed-markets/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Market Internals: Growth vs. Value & Cyclical vs. Defensive Sectors
Series
Growth vs. Value
curl -X GET "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth-vs-value/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth-vs-value/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-msci-us-large-cap-growth-vs-value/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Market Internals: Growth vs. Value & Cyclical vs. Defensive Sectors
Series
Cyclical vs. Defensive Sectors
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cyclical-vs-defensive-stocks-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Valuation Ratios: P/E vs. Market Cap to GDP
Series
S&P 500 PE Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-price-earnings-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-price-earnings-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-price-earnings-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Valuation Ratios: P/E vs. Market Cap to GDP
Series
Shiller PE Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-shiller-price-earnings-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-shiller-price-earnings-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-shiller-price-earnings-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Valuation Ratios: P/E vs. Market Cap to GDP
Series
Market Cap to GDP (Buffett Indicator)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-wilshire-gdp-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-wilshire-gdp-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-wilshire-gdp-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
30-Year Fixed Rate Mortgage vs. Home Price to Income Ratio
Series
Mortgage Rates
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mortgage-yield/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mortgage-yield/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mortgage-yield/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
30-Year Fixed Rate Mortgage vs. Home Price to Income Ratio
Series
Home Price to Income Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-us-home-price-average-income-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-us-home-price-average-income-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-us-home-price-average-income-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Copper/Gold vs. Interest Rates
Series
Copper/Gold Ratio
curl -X GET "https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-copper-gold-ratio/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Copper/Gold vs. Interest Rates
Series
10-year US Treasury Bond Yield
curl -X GET "https://www.longtermtrends.com/community/api/data/data-interest-rates/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-interest-rates/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-interest-rates/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Labor Market Surveys & Hires
Series
CES Payrolls Growth (YoY)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nonfarm-payrolls-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nonfarm-payrolls-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nonfarm-payrolls-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Labor Market Surveys & Hires
Series
CPS Employment Growth (YoY)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-employment-level-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-employment-level-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-employment-level-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Labor Market Surveys & Hires
Series
JOLTS Hires
curl -X GET "https://www.longtermtrends.com/community/api/data/data-total-nonfarm-hires/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-total-nonfarm-hires/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-total-nonfarm-hires/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
CPS vs. CES Spread: A Leading Economic Signal
Series
Employment vs. Payrolls Spread
curl -X GET "https://www.longtermtrends.com/community/api/data/data-employment-level-minus-nonfarm-payrolls-yoy/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-employment-level-minus-nonfarm-payrolls-yoy/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-employment-level-minus-nonfarm-payrolls-yoy/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
New One Family Homes for Sale in the US
Series
New One Family Homes for Sale in the US
curl -X GET "https://www.longtermtrends.com/community/api/data/data-new-one-family-homes-for-sale/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-new-one-family-homes-for-sale/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-new-one-family-homes-for-sale/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
VIX (Volatility Index)
Series
VIX (Volatility Index)
curl -X GET "https://www.longtermtrends.com/community/api/data/data-vix/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-vix/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-vix/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Worldwide GDP Comparison

Chart
Gross Domestic Product (GDP) Per Country
Series
USA
curl -X GET "https://www.longtermtrends.com/community/api/data/data-usa-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-usa-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-usa-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
China
curl -X GET "https://www.longtermtrends.com/community/api/data/data-china-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-china-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-china-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Japan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-japan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-japan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-japan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Germany
curl -X GET "https://www.longtermtrends.com/community/api/data/data-germany-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-germany-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-germany-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
United Kingdom
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uk-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uk-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uk-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
India
curl -X GET "https://www.longtermtrends.com/community/api/data/data-india-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-india-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-india-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
France
curl -X GET "https://www.longtermtrends.com/community/api/data/data-france-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-france-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-france-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Italy
curl -X GET "https://www.longtermtrends.com/community/api/data/data-italy-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-italy-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-italy-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Brazil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-brazil-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-brazil-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-brazil-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Canada
curl -X GET "https://www.longtermtrends.com/community/api/data/data-canada-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-canada-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-canada-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Russia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-russia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-russia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-russia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Korea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-korea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-korea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-korea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Australia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-australia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-australia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-australia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Spain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-spain-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-spain-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-spain-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Mexico
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mexico-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mexico-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mexico-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Indonesia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-indonesia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-indonesia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-indonesia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Netherlands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-netherlands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-netherlands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-netherlands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Saudi Arabia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saudi-arabia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saudi-arabia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saudi-arabia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Turkey
curl -X GET "https://www.longtermtrends.com/community/api/data/data-turkey-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-turkey-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-turkey-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Switzerland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-switzerland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-switzerland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-switzerland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Poland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-poland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-poland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-poland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Thailand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-thailand-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-thailand-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-thailand-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Belgium
curl -X GET "https://www.longtermtrends.com/community/api/data/data-belgium-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-belgium-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-belgium-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Sweden
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sweden-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sweden-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sweden-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Nigeria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nigeria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nigeria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nigeria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Argentina
curl -X GET "https://www.longtermtrends.com/community/api/data/data-argentina-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-argentina-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-argentina-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Austria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-austria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-austria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-austria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
UAE
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uae-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uae-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uae-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Norway
curl -X GET "https://www.longtermtrends.com/community/api/data/data-norway-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-norway-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-norway-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Israel
curl -X GET "https://www.longtermtrends.com/community/api/data/data-israel-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-israel-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-israel-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Ireland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ireland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ireland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ireland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
South Africa
curl -X GET "https://www.longtermtrends.com/community/api/data/data-south-africa-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-south-africa-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-south-africa-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Singapore
curl -X GET "https://www.longtermtrends.com/community/api/data/data-singapore-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-singapore-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-singapore-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Philippines
curl -X GET "https://www.longtermtrends.com/community/api/data/data-philippines-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-philippines-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-philippines-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Malaysia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-malaysia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-malaysia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-malaysia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Hong Kong
curl -X GET "https://www.longtermtrends.com/community/api/data/data-hong-kong-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-hong-kong-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-hong-kong-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Bangladesh
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bangladesh-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bangladesh-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bangladesh-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Denmark
curl -X GET "https://www.longtermtrends.com/community/api/data/data-denmark-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-denmark-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-denmark-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Vietnam
curl -X GET "https://www.longtermtrends.com/community/api/data/data-vietnam-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-vietnam-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-vietnam-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Colombia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-colombia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-colombia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-colombia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Pakistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-pakistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-pakistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-pakistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Egypt
curl -X GET "https://www.longtermtrends.com/community/api/data/data-egypt-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-egypt-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-egypt-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Iran
curl -X GET "https://www.longtermtrends.com/community/api/data/data-iran-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-iran-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-iran-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Chile
curl -X GET "https://www.longtermtrends.com/community/api/data/data-chile-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-chile-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-chile-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Finland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-finland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-finland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-finland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Czech Republic
curl -X GET "https://www.longtermtrends.com/community/api/data/data-czech-republic-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-czech-republic-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-czech-republic-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Romania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-romania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-romania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-romania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Portugal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-portugal-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-portugal-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-portugal-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Iraq
curl -X GET "https://www.longtermtrends.com/community/api/data/data-iraq-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-iraq-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-iraq-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Peru
curl -X GET "https://www.longtermtrends.com/community/api/data/data-peru-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-peru-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-peru-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
New Zealand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-new-zealand-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-new-zealand-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-new-zealand-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Greece
curl -X GET "https://www.longtermtrends.com/community/api/data/data-greece-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-greece-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-greece-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Algeria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-algeria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-algeria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-algeria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Kazakhstan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kazakhstan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kazakhstan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kazakhstan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Qatar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-qatar-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-qatar-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-qatar-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Hungary
curl -X GET "https://www.longtermtrends.com/community/api/data/data-hungary-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-hungary-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-hungary-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Ukraine
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ukraine-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ukraine-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ukraine-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Kuwait
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kuwait-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kuwait-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kuwait-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Morocco
curl -X GET "https://www.longtermtrends.com/community/api/data/data-morocco-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-morocco-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-morocco-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Ecuador
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ecuador-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ecuador-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ecuador-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Slovakia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-slovakia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-slovakia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-slovakia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Puerto Rico
curl -X GET "https://www.longtermtrends.com/community/api/data/data-puerto-rico-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-puerto-rico-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-puerto-rico-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Cuba
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cuba-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cuba-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cuba-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Kenya
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kenya-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kenya-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kenya-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Ethiopia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ethiopia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ethiopia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ethiopia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Sri Lanka
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sri-lanka-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sri-lanka-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sri-lanka-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Dominican Republic
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dominican-republic-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dominican-republic-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dominican-republic-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Oman
curl -X GET "https://www.longtermtrends.com/community/api/data/data-oman-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-oman-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-oman-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Guatemala
curl -X GET "https://www.longtermtrends.com/community/api/data/data-guatemala-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-guatemala-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-guatemala-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Myanmar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-myanmar-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-myanmar-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-myanmar-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Libya
curl -X GET "https://www.longtermtrends.com/community/api/data/data-libya-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-libya-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-libya-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Angola
curl -X GET "https://www.longtermtrends.com/community/api/data/data-angola-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-angola-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-angola-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Luxembourg
curl -X GET "https://www.longtermtrends.com/community/api/data/data-luxembourg-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-luxembourg-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-luxembourg-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Panama
curl -X GET "https://www.longtermtrends.com/community/api/data/data-panama-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-panama-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-panama-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Bulgaria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bulgaria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bulgaria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bulgaria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Ghana
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ghana-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ghana-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ghana-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Costa Rica
curl -X GET "https://www.longtermtrends.com/community/api/data/data-costa-rica-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-costa-rica-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-costa-rica-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Belarus
curl -X GET "https://www.longtermtrends.com/community/api/data/data-belarus-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-belarus-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-belarus-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Uruguay
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uruguay-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uruguay-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uruguay-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Croatia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-croatia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-croatia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-croatia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Tanzania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tanzania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tanzania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tanzania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Cote d'Ivoire
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cote-divoire-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cote-divoire-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cote-divoire-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Uzbekistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uzbekistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uzbekistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uzbekistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Macao
curl -X GET "https://www.longtermtrends.com/community/api/data/data-macao-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-macao-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-macao-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Lithuania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-lithuania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-lithuania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-lithuania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Slovenia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-slovenia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-slovenia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-slovenia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Congo
curl -X GET "https://www.longtermtrends.com/community/api/data/data-congo-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-congo-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-congo-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Lebanon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-lebanon-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-lebanon-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-lebanon-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Serbia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-serbia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-serbia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-serbia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Azerbaijan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-azerbaijan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-azerbaijan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-azerbaijan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Turkmenistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-turkmenistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-turkmenistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-turkmenistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Jordan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-jordan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-jordan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-jordan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Tunisia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tunisia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tunisia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tunisia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Cameroon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cameroon-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cameroon-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cameroon-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Bahrain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bahrain-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bahrain-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bahrain-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Paraguay
curl -X GET "https://www.longtermtrends.com/community/api/data/data-paraguay-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-paraguay-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-paraguay-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Uganda
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uganda-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uganda-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uganda-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Latvia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-latvia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-latvia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-latvia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Nepal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nepal-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nepal-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nepal-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Sudan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sudan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sudan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sudan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Estonia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-estonia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-estonia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-estonia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Cambodia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cambodia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cambodia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cambodia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
El Salvador
curl -X GET "https://www.longtermtrends.com/community/api/data/data-el-salvador-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-el-salvador-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-el-salvador-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Cyprus
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cyprus-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cyprus-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cyprus-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Honduras
curl -X GET "https://www.longtermtrends.com/community/api/data/data-honduras-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-honduras-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-honduras-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Papua New Guinea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-papua-new-guinea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-papua-new-guinea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-papua-new-guinea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Iceland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-iceland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-iceland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-iceland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Trinidad and Tobago
curl -X GET "https://www.longtermtrends.com/community/api/data/data-trinidad-and-tobago-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-trinidad-and-tobago-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-trinidad-and-tobago-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Senegal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-senegal-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-senegal-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-senegal-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Zambia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-zambia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-zambia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-zambia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Syria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-syria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-syria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-syria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Zimbabwe
curl -X GET "https://www.longtermtrends.com/community/api/data/data-zimbabwe-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-zimbabwe-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-zimbabwe-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Bosnia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bosnia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bosnia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bosnia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Afghanistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-afghanistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-afghanistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-afghanistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Lao PDR
curl -X GET "https://www.longtermtrends.com/community/api/data/data-lao-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-lao-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-lao-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Georgia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-georgia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-georgia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-georgia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Mali
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mali-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mali-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mali-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
West Bank and Gaza
curl -X GET "https://www.longtermtrends.com/community/api/data/data-west-bank-and-gaza-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-west-bank-and-gaza-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-west-bank-and-gaza-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Gabon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gabon-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gabon-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gabon-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Botswana
curl -X GET "https://www.longtermtrends.com/community/api/data/data-botswana-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-botswana-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-botswana-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Burkina Faso
curl -X GET "https://www.longtermtrends.com/community/api/data/data-burkina-faso-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-burkina-faso-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-burkina-faso-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Malta
curl -X GET "https://www.longtermtrends.com/community/api/data/data-malta-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-malta-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-malta-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Jamaica
curl -X GET "https://www.longtermtrends.com/community/api/data/data-jamaica-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-jamaica-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-jamaica-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Mozambique
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mozambique-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mozambique-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mozambique-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Albania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-albania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-albania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-albania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Haiti
curl -X GET "https://www.longtermtrends.com/community/api/data/data-haiti-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-haiti-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-haiti-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Mauritius
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mauritius-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mauritius-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mauritius-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Benin
curl -X GET "https://www.longtermtrends.com/community/api/data/data-benin-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-benin-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-benin-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Mongolia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mongolia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mongolia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mongolia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Madagascar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-madagascar-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-madagascar-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-madagascar-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Armenia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-armenia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-armenia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-armenia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Brunei
curl -X GET "https://www.longtermtrends.com/community/api/data/data-brunei-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-brunei-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-brunei-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Bahamas
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bahamas-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bahamas-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bahamas-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Niger
curl -X GET "https://www.longtermtrends.com/community/api/data/data-niger-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-niger-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-niger-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Nicaragua
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nicaragua-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nicaragua-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nicaragua-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Namibia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-namibia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-namibia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-namibia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Moldova
curl -X GET "https://www.longtermtrends.com/community/api/data/data-moldova-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-moldova-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-moldova-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Equatorial Guinea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-equatorial-guinea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-equatorial-guinea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-equatorial-guinea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Chad
curl -X GET "https://www.longtermtrends.com/community/api/data/data-chad-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-chad-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-chad-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Malawi
curl -X GET "https://www.longtermtrends.com/community/api/data/data-malawi-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-malawi-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-malawi-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Rwanda
curl -X GET "https://www.longtermtrends.com/community/api/data/data-rwanda-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-rwanda-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-rwanda-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Channel Islands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-channel-islands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-channel-islands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-channel-islands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
New Caledonia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-new-caledonia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-new-caledonia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-new-caledonia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Somalia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-somalia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-somalia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-somalia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Kyrgyzstan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kyrgyzstan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kyrgyzstan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kyrgyzstan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Tajikistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tajikistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tajikistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tajikistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Bermuda
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bermuda-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bermuda-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bermuda-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Monaco
curl -X GET "https://www.longtermtrends.com/community/api/data/data-monaco-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-monaco-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-monaco-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Liechtenstein
curl -X GET "https://www.longtermtrends.com/community/api/data/data-liechtenstein-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-liechtenstein-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-liechtenstein-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
French Polynesia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-french-polynesia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-french-polynesia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-french-polynesia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Cayman Islands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cayman-islands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cayman-islands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cayman-islands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Maldives
curl -X GET "https://www.longtermtrends.com/community/api/data/data-maldives-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-maldives-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-maldives-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Montenegro
curl -X GET "https://www.longtermtrends.com/community/api/data/data-montenegro-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-montenegro-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-montenegro-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Fiji
curl -X GET "https://www.longtermtrends.com/community/api/data/data-fiji-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-fiji-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-fiji-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Barbados
curl -X GET "https://www.longtermtrends.com/community/api/data/data-barbados-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-barbados-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-barbados-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Guyana
curl -X GET "https://www.longtermtrends.com/community/api/data/data-guyana-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-guyana-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-guyana-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Swaziland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-swaziland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-swaziland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-swaziland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Virgin Islands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-virgin-islands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-virgin-islands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-virgin-islands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Sierra Leone
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sierra-leone-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sierra-leone-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sierra-leone-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Suriname
curl -X GET "https://www.longtermtrends.com/community/api/data/data-suriname-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-suriname-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-suriname-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Aruba
curl -X GET "https://www.longtermtrends.com/community/api/data/data-aruba-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-aruba-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-aruba-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Liberia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-liberia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-liberia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-liberia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Andorra
curl -X GET "https://www.longtermtrends.com/community/api/data/data-andorra-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-andorra-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-andorra-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Djibouti
curl -X GET "https://www.longtermtrends.com/community/api/data/data-djibouti-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-djibouti-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-djibouti-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Greenland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-greenland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-greenland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-greenland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Bhutan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bhutan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bhutan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bhutan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Belize
curl -X GET "https://www.longtermtrends.com/community/api/data/data-belize-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-belize-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-belize-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Saint Lucia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saint-lucia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saint-lucia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saint-lucia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Timor-Leste
curl -X GET "https://www.longtermtrends.com/community/api/data/data-timor-leste-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-timor-leste-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-timor-leste-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Gambia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gambia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gambia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gambia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
San Marino
curl -X GET "https://www.longtermtrends.com/community/api/data/data-san-marino-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-san-marino-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-san-marino-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Saint Kitts and Nevis
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saint-kitts-nevis-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saint-kitts-nevis-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saint-kitts-nevis-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Samoa
curl -X GET "https://www.longtermtrends.com/community/api/data/data-samoa-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-samoa-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-samoa-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Saint Vincent Grenadines
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saint-vincent-grenadines-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saint-vincent-grenadines-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saint-vincent-grenadines-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Tuvalu
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tuvalu-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tuvalu-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tuvalu-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Venezuela
curl -X GET "https://www.longtermtrends.com/community/api/data/data-venezuela-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-venezuela-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-venezuela-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Yemen
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yemen-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yemen-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yemen-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Kosovo
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kosovo-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kosovo-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kosovo-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
Gross Domestic Product (GDP) Per Country
Series
Eritrea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-eritrea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-eritrea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-eritrea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
USA
curl -X GET "https://www.longtermtrends.com/community/api/data/data-usa-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-usa-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-usa-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
China
curl -X GET "https://www.longtermtrends.com/community/api/data/data-china-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-china-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-china-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Japan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-japan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-japan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-japan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Germany
curl -X GET "https://www.longtermtrends.com/community/api/data/data-germany-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-germany-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-germany-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
United Kingdom
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uk-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uk-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uk-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
India
curl -X GET "https://www.longtermtrends.com/community/api/data/data-india-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-india-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-india-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
France
curl -X GET "https://www.longtermtrends.com/community/api/data/data-france-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-france-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-france-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Italy
curl -X GET "https://www.longtermtrends.com/community/api/data/data-italy-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-italy-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-italy-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Brazil
curl -X GET "https://www.longtermtrends.com/community/api/data/data-brazil-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-brazil-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-brazil-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Canada
curl -X GET "https://www.longtermtrends.com/community/api/data/data-canada-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-canada-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-canada-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Russia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-russia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-russia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-russia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Korea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-korea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-korea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-korea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Australia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-australia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-australia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-australia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Spain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-spain-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-spain-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-spain-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Mexico
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mexico-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mexico-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mexico-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Indonesia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-indonesia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-indonesia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-indonesia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Netherlands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-netherlands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-netherlands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-netherlands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Saudi Arabia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saudi-arabia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saudi-arabia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saudi-arabia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Turkey
curl -X GET "https://www.longtermtrends.com/community/api/data/data-turkey-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-turkey-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-turkey-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Switzerland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-switzerland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-switzerland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-switzerland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Poland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-poland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-poland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-poland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Thailand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-thailand-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-thailand-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-thailand-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Belgium
curl -X GET "https://www.longtermtrends.com/community/api/data/data-belgium-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-belgium-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-belgium-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Sweden
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sweden-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sweden-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sweden-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Nigeria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nigeria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nigeria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nigeria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Argentina
curl -X GET "https://www.longtermtrends.com/community/api/data/data-argentina-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-argentina-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-argentina-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Austria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-austria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-austria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-austria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
UAE
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uae-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uae-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uae-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Norway
curl -X GET "https://www.longtermtrends.com/community/api/data/data-norway-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-norway-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-norway-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Israel
curl -X GET "https://www.longtermtrends.com/community/api/data/data-israel-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-israel-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-israel-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Ireland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ireland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ireland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ireland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
South Africa
curl -X GET "https://www.longtermtrends.com/community/api/data/data-south-africa-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-south-africa-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-south-africa-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Singapore
curl -X GET "https://www.longtermtrends.com/community/api/data/data-singapore-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-singapore-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-singapore-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Philippines
curl -X GET "https://www.longtermtrends.com/community/api/data/data-philippines-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-philippines-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-philippines-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Malaysia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-malaysia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-malaysia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-malaysia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Hong Kong
curl -X GET "https://www.longtermtrends.com/community/api/data/data-hong-kong-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-hong-kong-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-hong-kong-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Bangladesh
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bangladesh-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bangladesh-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bangladesh-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Denmark
curl -X GET "https://www.longtermtrends.com/community/api/data/data-denmark-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-denmark-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-denmark-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Vietnam
curl -X GET "https://www.longtermtrends.com/community/api/data/data-vietnam-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-vietnam-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-vietnam-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Colombia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-colombia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-colombia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-colombia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Pakistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-pakistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-pakistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-pakistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Egypt
curl -X GET "https://www.longtermtrends.com/community/api/data/data-egypt-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-egypt-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-egypt-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Iran
curl -X GET "https://www.longtermtrends.com/community/api/data/data-iran-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-iran-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-iran-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Chile
curl -X GET "https://www.longtermtrends.com/community/api/data/data-chile-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-chile-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-chile-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Finland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-finland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-finland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-finland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Czech Republic
curl -X GET "https://www.longtermtrends.com/community/api/data/data-czech-republic-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-czech-republic-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-czech-republic-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Romania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-romania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-romania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-romania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Portugal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-portugal-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-portugal-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-portugal-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Iraq
curl -X GET "https://www.longtermtrends.com/community/api/data/data-iraq-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-iraq-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-iraq-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Peru
curl -X GET "https://www.longtermtrends.com/community/api/data/data-peru-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-peru-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-peru-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
New Zealand
curl -X GET "https://www.longtermtrends.com/community/api/data/data-new-zealand-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-new-zealand-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-new-zealand-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Greece
curl -X GET "https://www.longtermtrends.com/community/api/data/data-greece-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-greece-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-greece-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Algeria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-algeria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-algeria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-algeria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Kazakhstan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kazakhstan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kazakhstan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kazakhstan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Qatar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-qatar-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-qatar-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-qatar-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Hungary
curl -X GET "https://www.longtermtrends.com/community/api/data/data-hungary-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-hungary-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-hungary-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Ukraine
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ukraine-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ukraine-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ukraine-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Kuwait
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kuwait-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kuwait-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kuwait-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Morocco
curl -X GET "https://www.longtermtrends.com/community/api/data/data-morocco-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-morocco-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-morocco-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Ecuador
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ecuador-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ecuador-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ecuador-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Slovakia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-slovakia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-slovakia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-slovakia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Puerto Rico
curl -X GET "https://www.longtermtrends.com/community/api/data/data-puerto-rico-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-puerto-rico-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-puerto-rico-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Cuba
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cuba-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cuba-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cuba-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Kenya
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kenya-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kenya-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kenya-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Ethiopia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ethiopia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ethiopia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ethiopia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Sri Lanka
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sri-lanka-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sri-lanka-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sri-lanka-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Dominican Republic
curl -X GET "https://www.longtermtrends.com/community/api/data/data-dominican-republic-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-dominican-republic-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-dominican-republic-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Oman
curl -X GET "https://www.longtermtrends.com/community/api/data/data-oman-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-oman-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-oman-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Guatemala
curl -X GET "https://www.longtermtrends.com/community/api/data/data-guatemala-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-guatemala-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-guatemala-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Myanmar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-myanmar-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-myanmar-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-myanmar-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Libya
curl -X GET "https://www.longtermtrends.com/community/api/data/data-libya-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-libya-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-libya-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Angola
curl -X GET "https://www.longtermtrends.com/community/api/data/data-angola-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-angola-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-angola-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Luxembourg
curl -X GET "https://www.longtermtrends.com/community/api/data/data-luxembourg-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-luxembourg-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-luxembourg-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Panama
curl -X GET "https://www.longtermtrends.com/community/api/data/data-panama-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-panama-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-panama-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Bulgaria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bulgaria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bulgaria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bulgaria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Ghana
curl -X GET "https://www.longtermtrends.com/community/api/data/data-ghana-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-ghana-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-ghana-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Costa Rica
curl -X GET "https://www.longtermtrends.com/community/api/data/data-costa-rica-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-costa-rica-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-costa-rica-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Belarus
curl -X GET "https://www.longtermtrends.com/community/api/data/data-belarus-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-belarus-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-belarus-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Uruguay
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uruguay-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uruguay-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uruguay-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Croatia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-croatia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-croatia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-croatia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Tanzania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tanzania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tanzania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tanzania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Cote d'Ivoire
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cote-divoire-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cote-divoire-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cote-divoire-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Uzbekistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uzbekistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uzbekistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uzbekistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Macao
curl -X GET "https://www.longtermtrends.com/community/api/data/data-macao-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-macao-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-macao-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Lithuania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-lithuania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-lithuania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-lithuania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Slovenia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-slovenia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-slovenia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-slovenia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Congo
curl -X GET "https://www.longtermtrends.com/community/api/data/data-congo-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-congo-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-congo-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Lebanon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-lebanon-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-lebanon-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-lebanon-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Serbia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-serbia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-serbia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-serbia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Azerbaijan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-azerbaijan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-azerbaijan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-azerbaijan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Turkmenistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-turkmenistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-turkmenistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-turkmenistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Jordan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-jordan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-jordan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-jordan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Tunisia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tunisia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tunisia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tunisia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Cameroon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cameroon-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cameroon-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cameroon-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Bahrain
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bahrain-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bahrain-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bahrain-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Paraguay
curl -X GET "https://www.longtermtrends.com/community/api/data/data-paraguay-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-paraguay-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-paraguay-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Uganda
curl -X GET "https://www.longtermtrends.com/community/api/data/data-uganda-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-uganda-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-uganda-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Latvia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-latvia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-latvia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-latvia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Nepal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nepal-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nepal-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nepal-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Sudan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sudan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sudan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sudan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Estonia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-estonia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-estonia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-estonia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Cambodia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cambodia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cambodia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cambodia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
El Salvador
curl -X GET "https://www.longtermtrends.com/community/api/data/data-el-salvador-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-el-salvador-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-el-salvador-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Cyprus
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cyprus-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cyprus-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cyprus-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Honduras
curl -X GET "https://www.longtermtrends.com/community/api/data/data-honduras-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-honduras-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-honduras-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Papua New Guinea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-papua-new-guinea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-papua-new-guinea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-papua-new-guinea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Iceland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-iceland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-iceland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-iceland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Trinidad and Tobago
curl -X GET "https://www.longtermtrends.com/community/api/data/data-trinidad-and-tobago-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-trinidad-and-tobago-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-trinidad-and-tobago-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Senegal
curl -X GET "https://www.longtermtrends.com/community/api/data/data-senegal-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-senegal-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-senegal-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Zambia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-zambia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-zambia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-zambia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Syria
curl -X GET "https://www.longtermtrends.com/community/api/data/data-syria-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-syria-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-syria-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Zimbabwe
curl -X GET "https://www.longtermtrends.com/community/api/data/data-zimbabwe-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-zimbabwe-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-zimbabwe-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Bosnia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bosnia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bosnia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bosnia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Afghanistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-afghanistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-afghanistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-afghanistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Lao PDR
curl -X GET "https://www.longtermtrends.com/community/api/data/data-lao-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-lao-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-lao-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Georgia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-georgia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-georgia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-georgia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Mali
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mali-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mali-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mali-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
West Bank and Gaza
curl -X GET "https://www.longtermtrends.com/community/api/data/data-west-bank-and-gaza-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-west-bank-and-gaza-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-west-bank-and-gaza-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Gabon
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gabon-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gabon-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gabon-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Botswana
curl -X GET "https://www.longtermtrends.com/community/api/data/data-botswana-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-botswana-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-botswana-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Burkina Faso
curl -X GET "https://www.longtermtrends.com/community/api/data/data-burkina-faso-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-burkina-faso-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-burkina-faso-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Malta
curl -X GET "https://www.longtermtrends.com/community/api/data/data-malta-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-malta-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-malta-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Jamaica
curl -X GET "https://www.longtermtrends.com/community/api/data/data-jamaica-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-jamaica-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-jamaica-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Mozambique
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mozambique-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mozambique-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mozambique-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Albania
curl -X GET "https://www.longtermtrends.com/community/api/data/data-albania-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-albania-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-albania-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Haiti
curl -X GET "https://www.longtermtrends.com/community/api/data/data-haiti-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-haiti-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-haiti-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Mauritius
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mauritius-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mauritius-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mauritius-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Benin
curl -X GET "https://www.longtermtrends.com/community/api/data/data-benin-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-benin-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-benin-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Mongolia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-mongolia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-mongolia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-mongolia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Madagascar
curl -X GET "https://www.longtermtrends.com/community/api/data/data-madagascar-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-madagascar-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-madagascar-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Armenia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-armenia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-armenia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-armenia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Brunei
curl -X GET "https://www.longtermtrends.com/community/api/data/data-brunei-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-brunei-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-brunei-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Bahamas
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bahamas-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bahamas-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bahamas-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Niger
curl -X GET "https://www.longtermtrends.com/community/api/data/data-niger-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-niger-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-niger-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Nicaragua
curl -X GET "https://www.longtermtrends.com/community/api/data/data-nicaragua-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-nicaragua-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-nicaragua-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Namibia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-namibia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-namibia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-namibia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Moldova
curl -X GET "https://www.longtermtrends.com/community/api/data/data-moldova-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-moldova-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-moldova-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Equatorial Guinea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-equatorial-guinea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-equatorial-guinea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-equatorial-guinea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Chad
curl -X GET "https://www.longtermtrends.com/community/api/data/data-chad-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-chad-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-chad-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Malawi
curl -X GET "https://www.longtermtrends.com/community/api/data/data-malawi-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-malawi-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-malawi-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Rwanda
curl -X GET "https://www.longtermtrends.com/community/api/data/data-rwanda-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-rwanda-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-rwanda-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Channel Islands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-channel-islands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-channel-islands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-channel-islands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
New Caledonia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-new-caledonia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-new-caledonia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-new-caledonia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Somalia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-somalia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-somalia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-somalia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Kyrgyzstan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kyrgyzstan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kyrgyzstan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kyrgyzstan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Tajikistan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tajikistan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tajikistan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tajikistan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Bermuda
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bermuda-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bermuda-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bermuda-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Monaco
curl -X GET "https://www.longtermtrends.com/community/api/data/data-monaco-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-monaco-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-monaco-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Liechtenstein
curl -X GET "https://www.longtermtrends.com/community/api/data/data-liechtenstein-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-liechtenstein-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-liechtenstein-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
French Polynesia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-french-polynesia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-french-polynesia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-french-polynesia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Cayman Islands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-cayman-islands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-cayman-islands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-cayman-islands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Maldives
curl -X GET "https://www.longtermtrends.com/community/api/data/data-maldives-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-maldives-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-maldives-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Montenegro
curl -X GET "https://www.longtermtrends.com/community/api/data/data-montenegro-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-montenegro-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-montenegro-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Fiji
curl -X GET "https://www.longtermtrends.com/community/api/data/data-fiji-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-fiji-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-fiji-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Barbados
curl -X GET "https://www.longtermtrends.com/community/api/data/data-barbados-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-barbados-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-barbados-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Guyana
curl -X GET "https://www.longtermtrends.com/community/api/data/data-guyana-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-guyana-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-guyana-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Swaziland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-swaziland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-swaziland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-swaziland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Virgin Islands
curl -X GET "https://www.longtermtrends.com/community/api/data/data-virgin-islands-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-virgin-islands-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-virgin-islands-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Sierra Leone
curl -X GET "https://www.longtermtrends.com/community/api/data/data-sierra-leone-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-sierra-leone-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-sierra-leone-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Suriname
curl -X GET "https://www.longtermtrends.com/community/api/data/data-suriname-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-suriname-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-suriname-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Aruba
curl -X GET "https://www.longtermtrends.com/community/api/data/data-aruba-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-aruba-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-aruba-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Liberia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-liberia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-liberia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-liberia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Andorra
curl -X GET "https://www.longtermtrends.com/community/api/data/data-andorra-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-andorra-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-andorra-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Djibouti
curl -X GET "https://www.longtermtrends.com/community/api/data/data-djibouti-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-djibouti-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-djibouti-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Greenland
curl -X GET "https://www.longtermtrends.com/community/api/data/data-greenland-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-greenland-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-greenland-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Bhutan
curl -X GET "https://www.longtermtrends.com/community/api/data/data-bhutan-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-bhutan-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-bhutan-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Belize
curl -X GET "https://www.longtermtrends.com/community/api/data/data-belize-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-belize-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-belize-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Saint Lucia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saint-lucia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saint-lucia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saint-lucia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Timor-Leste
curl -X GET "https://www.longtermtrends.com/community/api/data/data-timor-leste-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-timor-leste-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-timor-leste-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Gambia
curl -X GET "https://www.longtermtrends.com/community/api/data/data-gambia-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-gambia-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-gambia-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
San Marino
curl -X GET "https://www.longtermtrends.com/community/api/data/data-san-marino-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-san-marino-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-san-marino-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Saint Kitts and Nevis
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saint-kitts-nevis-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saint-kitts-nevis-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saint-kitts-nevis-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Samoa
curl -X GET "https://www.longtermtrends.com/community/api/data/data-samoa-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-samoa-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-samoa-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Saint Vincent Grenadines
curl -X GET "https://www.longtermtrends.com/community/api/data/data-saint-vincent-grenadines-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-saint-vincent-grenadines-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-saint-vincent-grenadines-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Tuvalu
curl -X GET "https://www.longtermtrends.com/community/api/data/data-tuvalu-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-tuvalu-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-tuvalu-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Venezuela
curl -X GET "https://www.longtermtrends.com/community/api/data/data-venezuela-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-venezuela-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-venezuela-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Yemen
curl -X GET "https://www.longtermtrends.com/community/api/data/data-yemen-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-yemen-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-yemen-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Kosovo
curl -X GET "https://www.longtermtrends.com/community/api/data/data-kosovo-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-kosovo-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-kosovo-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
Chart
GDP Growth Comparison
Series
Eritrea
curl -X GET "https://www.longtermtrends.com/community/api/data/data-eritrea-gdp/" -H "Authorization: Api-Key YOUR_API_KEY"
import requests

url = "https://www.longtermtrends.com/community/api/data/data-eritrea-gdp/"
headers = {"Authorization": "Api-Key YOUR_API_KEY"}

response = requests.get(url, headers=headers)
print(response.json())
const url = 'https://www.longtermtrends.com/community/api/data/data-eritrea-gdp/';
const headers = {
  'Authorization': 'Api-Key YOUR_API_KEY'
};

fetch(url, { headers })
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
No endpoints match your filter.