Embeddable Entity Cards

Embed Wikitopia entity cards on your website, blog, or documentation. Cards are self-contained, responsive, and auto-update.

Option 1 — iframe

Direct iframe embedding with fixed dimensions:

<iframe
  src="https://wikitopia.org/embed/entity/LangChain"
  width="340"
  height="220"
  frameborder="0"
  style="border-radius:4px"
></iframe>

Option 2 — JavaScript widget (auto-sizes)

Add a data-wikitopia-entity attribute and include the widget script:

<div data-wikitopia-entity="LangChain"></div>
<script src="https://wikitopia.org/embed/widget.js" async></script>

Optional attributes: data-wikitopia-width="400"

Option 3 — JSON API

Fetch entity data as JSON for custom rendering:

GET https://wikitopia-api-production.up.railway.app/v1/embed/entity/LangChain

Returns: {
  canonical_name, entity_type, description,
  claim_count, avg_confidence, top_properties,
  trust_level, entity_url, wikidata_url
}

Live preview