Option 1 — Drop-in widget

Paste this snippet wherever you want the preview to appear. It renders an auto-sizing card listing the latest articles.

<script src="https://inkrah.com/commentary/assets/js/widget.js"
        data-inkrah-type="category"
        data-inkrah-slug="tax-law"
        data-inkrah-limit="3"
        data-inkrah-title="1"></script>
  • data-inkrah-typelatest (default, all categories) or category
  • data-inkrah-slug — required when type is category, e.g. criminal-law, business-law
  • data-inkrah-limit — 1 to 6 articles, default 3
  • data-inkrah-title1 to show the widget heading, 0 to hide it

Live preview:

Option 2 — Raw JSON API

For full control over markup, call the JSON API directly from your own front end. Responses are CORS-enabled from any origin.

GET https://inkrah.com/commentary/api/latest.php?limit=3
GET https://inkrah.com/commentary/api/latest.php?category=business-law&limit=3
GET https://inkrah.com/commentary/api/article.php?slug=piercing-the-corporate-veil

Example response from /api/latest.php:

{
  "source": "INKRAH Commentary",
  "count": 3,
  "articles": [
    {
      "title": "Piercing the Corporate Veil: When Limited Liability Ends",
      "excerpt": "Limited liability is the foundation of modern company law…",
      "url": "https://inkrah.com/commentary/article/piercing-the-corporate-veil",
      "category_name": "Business Law",
      "published_at_display": "27 April 2026",
      "reading_time": 5
    }
  ]
}

Option 3 — RSS

Subscribe or pipe our feed into your own CMS: https://inkrah.com/commentary/api/rss.php

Fair use

Embeds and API responses are limited to titles, excerpts and metadata — full article text is served only on inkrah.example itself, so your readers click through for the complete commentary. Please keep the "More on INKRAH Commentary" attribution link intact in the widget.