kitegraph
API access is included on the Professional and Business plans

Publish and embed

Publish a chart and put the live embed on your own page.

Publishing gives a chart a stable embed URL. Put it on any page; it stays live and updates when you republish.

1. Publish

curl -X POST "https://api.kitegraph.com/v1/charts/9f2c…/publish" -H "Authorization: Bearer kg_live_…" → { "embedUrl": "https://app.kitegraph.com/embed/abcd1234", "iframe": "<iframe …>" }

2. Paste the snippet

<iframe src="https://app.kitegraph.com/embed/abcd1234" width="100%" height="420" frameborder="0" scrolling="no"></iframe> <script src="https://app.kitegraph.com/embed.js" async></script>

Include embed.js once per page. It sizes the iframe to the chart's content so nothing clips on narrow columns. Full detail: Embedding.

3. Update in place

Republishing keeps the URL. Edit the chart, publish again, and every page embedding it shows the new version. No change to the snippet.

Publish and embed — Kitegraph docs