EveryDocumentation Index
Fetch the complete documentation index at: https://docs.topograph.co/llms.txt
Use this file to discover all available pages before exploring further.
/v2/company request runs in either verification mode or onboarding mode. The mode changes the product tradeoff: verification prioritizes authoritative data, while onboarding prioritizes fast responses for form prefill.
At a glance
| Question | Verification | Onboarding |
|---|---|---|
| Default? | Yes. Omit mode or pass "verification". | No. Pass mode: "onboarding". |
| Best for | Final KYB checks, compliance review, due diligence. | Sign-up forms, prefill, early screening, conversion-sensitive flows. |
| Data source | Authoritative official sources for the requested datapoint. | The fastest compatible source for the requested datapoint. It may be authoritative or non-authoritative depending on country. |
| Speed | Can take seconds, minutes, or longer for slow registers. | Has a 10-second deadline per datapoint. |
| Completeness | Optimized for eventual completeness. | Optimized for speed. Unsupported or slow datapoints fail quickly. |
| How to inspect result | Check request.dataStatus.dataPoints[datapoint].authoritative. | Same. If authoritative: false, follow up with verification before final decisions. |
Verification mode
Verification is the default. Use it when you need data that can support a compliance decision.Onboarding mode
Onboarding mode is for fast customer-facing flows. It helps you prefill forms and run early checks without making every prospect wait for slower register retrieval.authoritative flag before using the response for final verification.
Timeouts and unsupported datapoints
Onboarding mode applies a 10-second deadline to each requested datapoint. If a datapoint cannot finish in time, it fails withonboarding_timeout. If the country has no fast source for that datapoint, it fails with fast_source_unavailable.
mode: "onboarding" when you need the slower verification path.
availableDocuments is a document listing datapoint. Its behavior depends on the country document catalog and is not simply a fast-source company-data lookup.Staged KYB flow
A common integration pattern is:- Search for the company.
- Request
companyandlegalRepresentativeswithmode: "onboarding"to prefill the form. - Let the customer confirm or correct the prefilled fields.
- Request verification data and documents before final approval.
- Use webhooks or polling to process slower verification results.
Country availability
Mode availability is country-specific. Some countries use the same authoritative source in both modes; others have a faster onboarding source with fewer fields; some datapoints are verification-only. Use Coverage and pricing for the live matrix, or callGET /v2/pricing?countryCode=FR from your application.