JSON-LD & Embed Scripts
Add machine-readable structured data to your website with a single script tag. Embeds load live data from Nordax and update automatically when your entity profile changes — no re-deployment needed.
Entity Embed Script
The entity embed script injects JSON-LD structured data and Open Graph meta tags into your page. It runs after page load and does not block rendering.
<script
src="https://cdn.nordax.ai/cdn/entity/{your-slug}.js"
defer
></script>Replace {your-slug} with your entity slug (e.g., nordax-digital).
What the Script Injects
The depth of injected data depends on your entity's subscription tier:
| Tier | JSON-LD Depth | OG Tags |
|---|---|---|
| Free | Basic snapshot (name, type, city) | No |
| Basic | Core JSON-LD (contact, services) | No |
| Verified+ | Full JSON-LD + relationships | Yes |
Direct JSON-LD Endpoint
If you prefer to fetch the raw JSON-LD data (for server-side rendering or custom injection), use the direct endpoint:
GET https://entities.nordax.ai/{slug}/schema.jsonldReturns application/ld+json. Cache: 5 min browser, 5 min edge, 1 hr stale-while-revalidate.
Embed Parameter
Append ?embed=1 to the schema.jsonld URL to get a self-executing script that injects the JSON-LD into your page automatically:
<script
src="https://entities.nordax.ai/{slug}/schema.jsonld?embed=1"
defer
></script>Auto-Updating
Both the CDN embed script and the direct JSON-LD endpoint serve live data. When you update your entity profile in the Nordax dashboard, the changes propagate to all embedded scripts within the cache window (up to 1 hour for CDN scripts, 5 minutes for direct endpoints). No code changes or re-deployment required.
CORS & Security
All CDN and entity endpoints return permissive CORS headers, so scripts work on any domain:
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, OPTIONS
X-Content-Type-Options: nosniff
All Entity Data Endpoints
| URL | Format | Notes |
|---|---|---|
| /schema.jsonld | JSON-LD | Structured data for search engines & AI |
| /entity.json | JSON | Full entity data object |
| /open-entity.json | JSON | Public-only subset |
| /llms.txt | Plain text | LLM-readable summary |
| /llms-full.txt | Plain text | Extended summary (Authority+) |
All URLs are prefixed with https://entities.nordax.ai/{slug}. See LLMs.txt docs and API Reference for more details.