Skip to main content
REST API · v1

NOVTRIQ Engineering API

Programmatic access to 27 deterministic engineering calculators and regulatory-compliance checkers — data-centre efficiency, building energy & carbon, UK/EU/UAE compliance, structural design and technical due diligence. Callable by developers (REST) and by AI agents (MCP).

Base URLhttps://api.novtriq.tech/v1
FormatJSON
AuthX-API-Key
Live tools27

Authentication

The Free tier is keyless — call any tool directly, rate-limited to 5 requests/min per IP. Paid tiers (Starter, Pro, Enterprise) send an API key in the request header. Generate and manage keys from your NOVTRIQ dashboard.

Header (paid)
X-API-Key: ntq_live_your_api_key_here
Base URL
https://api.novtriq.tech/v1
Content-Type
application/json
Every tool response includes a standard_reference (the cited engineering standard), actionable recommendations, and a disclaimer. All outputs are indicative engineering estimates and must be validated by a qualified human engineer before any technical, legal or investment decision.

Core endpointsEvery tool is a POST to /v1/tools/{tool_name} with a JSON body of that tool's inputs.

MethodEndpointPurpose
GET/healthService status & live tool count
GET/v1/toolsList all tools with full input schemas
POST/v1/tools/{tool_name}Run a tool (JSON body of its inputs)
POST/mcpMCP JSON-RPC (protocol 2025-06-18): tools/list, tools/call

Worked examplecalculate_pue — Power Usage Effectiveness for a data centre / server room.

POST/v1/tools/calculate_pue
it_load_kw
number, required — IT equipment power draw (kW). e.g. 500
cooling_kw
number, required — Total cooling system power (kW). e.g. 200
ups_losses_kw
number, required — UPS & power-distribution losses (kW). e.g. 25
lighting_kw
number, required — Lighting power (kW). e.g. 1.5

Request

# Free tier — no key required (5 req/min per IP)
curl -X POST https://api.novtriq.tech/v1/tools/calculate_pue \
  -H "Content-Type: application/json" \
  -d '{
    "it_load_kw":    500,
    "cooling_kw":    200,
    "ups_losses_kw":  25,
    "lighting_kw":   1.5
  }'

# Paid tiers add:  -H "X-API-Key: ntq_live_your_api_key_here"

Response (live output, abridged)

{
  "pue_score": 1.453,
  "overhead_ratio": 0.453,
  "efficiency_rating": "Good",
  "total_facility_load_kw": 726.5,
  "annual_cost_estimate_gbp": 954621.0,
  "recommendations": [
    "Improving PUE from 1.453 to 1.4 would save ~GBP 34,821/year..."
  ],
  "standard_reference": "IEC 30134-2:2016 / ASHRAE TC 9.9",
  "disclaimer": "Automated, indicative estimate — must be validated by a qualified engineer...",
  "tier": "free"
}

Field names differ per tool. Call GET /v1/tools for every tool's exact input schema, or use the MCP tools/list method.

All 27 toolsPOST each to /v1/tools/{tool_name}. Full input schemas at GET /v1/tools.

Tool nameWhat it does
calculate_puePower Usage Effectiveness for a data centre / server room (IEC 30134-2, ASHRAE TC 9.9)
estimate_cooling_loadCooling load estimate (CIBSE Guide B2 / ASHRAE)
thermal_loadThermal load estimator for data centres / critical facilities
eed_datacentre_packEU EED data-centre reporting pack: PUE/WUE/ERF/REF (Dir (EU) 2023/1791 Art.12)
assess_epbd_scoreEU EPBD 2024 building energy-performance compliance
calculate_carbonOperational + embodied carbon & net-zero gap (CIBSE TM65 / RICS WLCA)
building_carbon_footprintWhole-building carbon Scope 1/2/3 with CRREM stranding check
sap_sbem_precheckUK SAP 10 / SBEM EPC precheck: rating → EPC band, CO2 & primary energy
mees_checkerMinimum Energy Efficiency Standard: is a property lawful to let? (England & Wales)
heatpump_heatlossWhole-dwelling design heat loss & heat-pump sizing (BS EN 12831 / MCS)
digital_renovation_passportEPBD-style staged digital renovation passport (3-phase roadmap)
building_readinessBuilding readiness assessment for change-of-use / conversion
part_o_overheatingApproved Document O overheating simplified method (new residential)
part_s_evApproved Document S EV charge-point provision (new & renovated buildings)
uk_planning_checkerUK permitted-development rules engine (GPDO 2015, England)
eurocode_beam_designerPreliminary Eurocode beam design (steel EC3 / composite / RC EC2)
eurocode_column_checkerEurocode axial column buckling check (steel EC3)
eu_cost_benchmarkingParametric construction cost benchmark across UK/EU/GCC
get_technical_dd_quoteIndicative Technical Due Diligence (TDD) fee estimate (RICS / CIBSE)
roi_calculatorEngineering ROI calculator
check_nis2_readinessNIS2 Directive (EU 2022/2555) compliance readiness
dgnb_bim_readinessDGNB pre-score + BIM (ISO 19650) maturity self-assessment
contractor_vettingNIS2 / EPBD contractor vetting score (12-question checklist)
check_uae_bim_complianceUAE BIM mandate applicability (Dubai Circular 196, Abu Dhabi DMT, Sharjah)
check_uae_cybersecurityUAE cybersecurity compliance (NESA IAS, Dubai ISR, CBUAE, TDRA)
check_grid_feasibility_uaeUAE grid-connection feasibility (DEWA / ADDC / SEWA / FEWA)
uae_climate_ghgUAE Scope 1 + Scope 2 GHG estimate, emirate-specific grid factors

Rate limits & plansLimits apply per API key (per IP on Free). Exceeding a limit returns HTTP 429 with a Retry-After header.

PlanPriceRequests / minCalls / monthMCPSupport
Free£05500Yes (no key)Community
Starter£29/mo605,000YesEmail (2 working days)
Pro£99/mo30050,000YesPriority (same day)
Enterprise£499/moCustom500,000YesSLA + Dedicated

Annual billing saves ~20% (Starter £23/mo · Pro £79/mo · Enterprise £399/mo). See pricing.

AI integration via MCP

Prefer calling NOVTRIQ tools from Claude, Cursor, Continue.dev or any MCP-compatible client? Connect directly to all 27 engineering tools — no REST plumbing required.

MCP endpoint
https://api.novtriq.tech/mcp
Protocol
JSON-RPC · 2025-06-18
Methods
tools/list (enumerate) · tools/call (run)

View MCP docs →

Start building with NOVTRIQ

Free tier needs no key — call a tool right now, or get an API key to scale.

Get an API Key Try Free Tools