Entylink
← Back to docs
Verification Reports
POST/v1/reports/verification

Generate a Verification Report

A Verification Report captures the UK company profile, officers, persons with significant control, filing history, and deterministic risk signals at a precise point in time. Each report stores an immutable snapshot with source attribution and a SHA-256 report hash for auditability. Available on Starter and Professional plans.

When to use it

Practical implementation contexts

Generate evidence for KYB onboarding workflows

Produce a timestamped audit record of a company check

Flag review signals before onboarding a supplier or partner

Prove what was checked and when for compliance purposes

Auth

Access model

Authentication

API key or session token (Starter / Professional only)

Request
curl https://api.entylink.com/v1/reports/verification \ -X POST \ -H "Authorization: Bearer etl_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "company_number": "08804411" }'
Parameters
ParameterTypeDescription
company_numberstringUK Companies House number, 6–10 alphanumeric characters
Response
Response exampleapplication/json
{
  "data": {
    "id": "vr_abc123def456gh78",
    "company_number": "08804411",
    "company_name": "REVOLUT LTD",
    "outcome": {
      "status": "pass",
      "risk_level": "none",
      "disclaimer": "This Verification Report is based on publicly available data from Companies House..."
    },
    "risk_level": "none",
    "signals": [
      {
        "code": "monitoring_not_enabled",
        "severity": "info",
        "title": "Company monitoring not enabled",
        "description": "No active webhook monitor is configured for this company.",
        "evidence": {}
      }
    ],
    "evidence": {
      "schema_version": "2026-05-01",
      "report_hash": "sha256:3a7f9c...",
      "source": "Companies House",
      "source_url": "https://find-and-update.company-information.service.gov.uk/company/08804411",
      "monitoring_active": false,
      "generated_at": "2026-05-03T12:00:00.000Z"
    },
    "links": {
      "dashboard": "https://entylink.com/dashboard/reports/vr_abc123def456gh78"
    }
  }
}
Related pages

Keep moving from docs into implementation and evaluation

Next step

Move from docs into a real registry workflow.

Entylink is built for teams embedding UK company data, verification, and monitoring into products rather than manually browsing the register.