Probably a well-known limitation now - from your experience, what’s the best approach to handling an API request that returns an array like this? The use case requires these tickers (stock symbols) to be dynamic, hence the response will be change each time
{
"AAPL.US": [
{
"date": "2025-04-08",
"count": 13,
"normalized": 0.1594
},
{
"date": "2025-04-07",
"count": 32,
"normalized": 0.0786
}
],
"TSLA.US": [
{
"date": "2025-04-08",
"count": 21,
"normalized": 0.3512
},
{
"date": "2025-04-07",
"count": 31,
"normalized": 0.0772
}
]
}