Multiple pairs and timeframes in a single API request

January 23, 2023

Introducing Multiple Constructs – the effortless and ultra-powerful way to query multiple symbols and timeframes in a single API call. This revolutionary feature amplifies the power of your queries, giving you maximum value from your plan.

With Multiple Constructs, you can ask our API to calculate values on multiple pairs of your choice, such as BTC/USDT, ETH/USDT and XRP/USDT, all in just one API request. Not only does this save you time, but it also lets you make the most of the requests available before hitting a rate limit.

Multiple constructs are available for Pro and Expert plans. Pro subscribers get access to 3 constructs and Expert subscribers get 10.

Get in touch with us if you would like to test the multiple constructs before purchasing the plan.

{
	"secret": "{{ secret }}",
	"construct": [
		{
			"exchange": "binance",
			"symbol": "BTC/USDT",
			"interval": "5m",
			"indicators": [
				{
					"indicator": "rsi"
				},
				{
					"indicator": "ema",
					"period": 20
				}
			]
		},
		{
			"exchange": "binance",
			"symbol": "ETH/USDT",
			"interval": "1h",
			"indicators": [
				{
					"indicator": "rsi"
				},
				{
					"indicator": "sma",
					"period": 200
				}
			]
		},
		{
			"exchange": "binance",
			"symbol": "ETH/USDT",
			"interval": "1d",
			"indicators": [
				{
					"indicator": "ema",
					"period": 200
				},
				{
					"indicator": "macd"
				}
			]
		}
	]
}