Control Orientation and Detail

Tune the layout without changing your source material by setting the infographic orientation and detail level explicitly.

curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "infographic",
    "topic": "Key milestones in quantum computing",
    "infographicOrientation": "square",
    "infographicDetail": "concise",
    "callbackData": "infographic-layout-test"
  }'

Tips

  • infographicOrientation supports landscape, portrait, and square โ€” pick based on where you will embed the graphic.

  • infographicDetail keeps density in check: start with standard, then move to concise for social or detailed for reports.

  • callbackData can store your own tracking string for webhook flows.

Last updated