Certvas
Developers

An API your app can cite.

Every response is wrapped in a provenance envelope — source reference, license class and observation time — so what your product or agent returns to a user is always traceable. Two surfaces, one key.

Base URLs

Two surfaces, one key.

SurfaceURL
REST APIhttps://dataco-api.northtide.workers.dev
MCP serverhttps://dataco-mcp.northtide.workers.dev/mcp

These are the current hosted endpoints. A branded custom domain (api.certvas.com) is available to Professional-tier customers.

Authentication

One key, tier-scoped.

Every endpoint except /health and /openapi.json requires an API key, passed as a header. Request one from pricing.

x-api-key: your-key-here

Keys are tier-scoped (sample / starter / professional) and per-minute rate-limited. The same key authenticates the MCP server.

Reference

Endpoints.

Method & pathReturns
GET /healthLiveness check (no key).
GET /v1/entities/{dataco_id}Canonical entity (name, jurisdiction, license).
GET /v1/fundamentals/{dataco_id}Point-in-time fundamentals. Optional ?as_of= & ?period_type=.
GET /v1/tenders?country=ZAPublic tenders. Optional ?from= & ?limit=.
GET /v1/macro?country=NGA&indicator=…Macro indicators. Optional ?from= (year) & ?limit=.
GET /v1/tender-parties?country=ZATender buyers/suppliers resolved to canonical entities.
GET /v1/quality-metrics/{sku}Measured coverage/freshness (af-fund, af-tender, af-macro).
GET /openapi.jsonOpenAPI description (no key).
Example

Fetch NASCON’s fundamentals.

curl
curl -H "x-api-key: your-key" \
  https://dataco-api.northtide.workers.dev/v1/fundamentals/DC4C096C…

Every row carries its provenance, and the response is wrapped with a license notice — see the envelope at the top of this page.

For AI agents

MCP — tools that cite themselves.

The MCP server exposes the same gold data as agent-callable tools — search_entities, get_entity, get_fundamentals, search_tenders, get_macro, get_resolved_parties, get_quality_metrics — each returning values with their source and license, so your model can quote them back to a user. Point any MCP client at the server URL with the same x-api-key header.

https://dataco-mcp.northtide.workers.dev/mcp  (header: x-api-key)