Build with the Nordax API
Access structured entity data, JSON-LD schemas, and the trust verification network through our REST API.
Quick Start
Make your first request
All endpoints live at https://api.nordax.ai/
Integrate entity data
Use JSON-LD schemas, entity profiles, and trust badges in your application.
Code Examples
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.nordax.ai/entities/nordax-digitalconst res = await fetch("https://api.nordax.ai/entities/nordax-digital", {
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
const entity = await res.json();
console.log(entity);import requests
res = requests.get(
"https://api.nordax.ai/entities/nordax-digital",
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
entity = res.json()
print(entity)API Reference
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/entities | List published entities with search, filter, and pagination. |
| GET | /api/v1/entities/:slug | Get full entity data by slug. Supports ?format=jsonld. |
| GET | /api/v1/entities/:slug/schema | Get raw JSON-LD structured data for an entity. |
| GET | /api/v1/entities/:slug/score-signals | Get visibility score breakdown for an entity. |
| GET | /api/v1/entities/:slug/score | Get computed visibility score with weighted breakdown. |
| GET | /api/v1/search?q=&category=&city= | Full-text entity search with filters and pagination. |
| GET | /api/v1/entities/resolve?domain=example.com | Resolve an entity by domain URL. |
| GET | /api/v1/organizations/:slug | Get an organization with its child entities. |
| GET | /api/v1/categories | List entity categories with counts. |
| GET | /api/v1/stats | Get network-wide statistics. |
| POST | /api/v1/entities/:slug/claim | Initiate a claim request for a seeded entity. |
| GET | /api/v1/webhooks | List your webhook subscriptions. |
| POST | /api/v1/webhooks | Create a webhook subscription for score/entity events. |
List published entities with search, filter, and pagination.
Get full entity data by slug. Supports ?format=jsonld.
Get raw JSON-LD structured data for an entity.
Get visibility score breakdown for an entity.
Get computed visibility score with weighted breakdown.
Full-text entity search with filters and pagination.
Resolve an entity by domain URL.
Get an organization with its child entities.
List entity categories with counts.
Get network-wide statistics.
Initiate a claim request for a seeded entity.
List your webhook subscriptions.
Create a webhook subscription for score/entity events.
Authentication
Include your API key in the Authorization header:
Authorization: Bearer nak_your_api_key_hereBadge Embeds
Embed verification badges to display trust signals:
<div data-entity="your-slug"></div>
<script src="https://cdn.nordax.ai/badge/embed.js"
defer></script>Direct Badge Image
Or embed a specific badge image directly via our CDN:
<a href="https://nordax.ai/entities/your-slug" target="_blank">
<img
src="https://cdn.nordax.ai/badges/full/dark/verified/your-slug"
alt="Verified on Nordax AI"
height="60"
/>
</a>Ready to get started?
Create your entity profile, generate an API key, and start building with structured entity data today.