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.
{
"data": [
{ "dataco_id": "DC4C096C…",
"line_item": "revenue",
"value_reported": 152686973000,
"currency_reported": "NGN",
"source_ref": "S009:NASCON-FS.pdf#p12",
"license_class": "S009" }
],
"_license": "License-clean; no natural-person data.",
"count": 1
}
Two surfaces, one key.
| Surface | URL |
|---|---|
| REST API | https://dataco-api.northtide.workers.dev |
| MCP server | https://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.
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-hereKeys are tier-scoped (sample / starter / professional) and per-minute rate-limited. The same key authenticates the MCP server.
Endpoints.
| Method & path | Returns |
|---|---|
GET /health | Liveness 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=ZA | Public tenders. Optional ?from= & ?limit=. |
GET /v1/macro?country=NGA&indicator=… | Macro indicators. Optional ?from= (year) & ?limit=. |
GET /v1/tender-parties?country=ZA | Tender buyers/suppliers resolved to canonical entities. |
GET /v1/quality-metrics/{sku} | Measured coverage/freshness (af-fund, af-tender, af-macro). |
GET /openapi.json | OpenAPI description (no key). |
Fetch NASCON’s fundamentals.
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.
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)