API Reference
All endpoints are available at https://api.nordax.ai. Authentication is required for write operations and private data. See Authentication for details.
Response Format
All endpoints return JSON. Successful responses include a data key. Errors include an error key with a human-readable message.
{
"data": { ... },
"meta": {
"page": 1,
"limit": 20,
"total": 142
}
}{
"error": "Entity not found"
}Entities
/v1/entitiesList published entities with search, filter, and pagination.
?q=&category=&city=&state=&page=&limit=
/v1/entities/:slugGet full entity data by slug.
?format=jsonld
/v1/entities/:slug/schemaGet raw JSON-LD structured data for an entity.
/v1/entities/:slug/scoreGet computed AI Visibility Score.
/v1/entities/:slug/score-signalsGet score signal categories.
/v1/entities/resolveResolve an entity by domain URL.
?domain=example.com
/v1/entities/:slug/claimInitiate a claim request for a seeded entity.
Search
/v1/searchFull-text entity search with filters and pagination.
?q=&category=&city=&state=&page=&limit=
Organizations
/v1/organizations/:slugGet an organization with its child entities.
Categories & Stats
/v1/categoriesList entity categories with counts.
/v1/statsGet network-wide statistics (total entities, verified count, etc.).
Webhooks
/v1/webhooksList your webhook subscriptions.
/v1/webhooksCreate a webhook subscription for score/entity events.
/v1/webhooks/:idDelete a webhook subscription.
Example: Get Entity
{
"data": {
"slug": "nordax-digital",
"entityName": "Nordax Digital",
"entityType": "ProfessionalService",
"description": "AI-powered entity verification...",
"email": "info@nordax.ai",
"url": "https://nordax.ai",
"city": "Denver",
"state": "CO",
"country": "US",
"tier": "gold",
"verificationStatus": "verified",
"visibilityScore": 92,
"services": ["AI Entity Verification", "..."],
"sameAs": ["https://linkedin.com/company/..."],
"updatedAt": "2026-03-15T..."
}
}Pagination
List endpoints support page and limit query parameters. Defaults: page=1, limit=20, max limit=100.
GET /v1/entities?page=2&limit=50&category=Restaurant&city=Denver