curl -X POST https://api.allternit.com/api/v1/viz/render/svg \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"chart_type": "bar",
"title": "Monthly Active Users",
"width": 800,
"height": 400,
"data": [
{ "label": "Jan", "value": 120 },
{ "label": "Feb", "value": 190 },
{ "label": "Mar", "value": 150 }
],
"colors": ["#3b82f6", "#8b5cf6", "#ec4899"]
}'