Relativity6Platform Docs

Quickstart

Run a business risk assessment with the Platform API in a few minutes.

Before you start

You need an organization API key in the format r6-<keyId>.<secret>. Send it on every request:

x-api-key: r6-yourKeyId.yourSecret

Base URL: https://api.relativity6.com

The Platform API endpoint for business risk is POST /v1/business/risk. For every field, see the business risk API reference.

Your first request

Send at least a company name. Adding domain, city, and state (or a full address) usually improves match quality.

Example request

A successful response returns HTTP 200 with a JSON body. Assessments can take from a few seconds to longer for deeper runs — plan your client timeout accordingly.

Read the response

Business data lives under company, grouped by section (for example company.firmographic, company.summary).

Many fields use a consistent shape:

  • value — the answer
  • confidence — how reliable that answer is (0–1)
  • sources — references supporting the value, when available

The categoryAccess object shows which sections you asked for, which your account allows, and which were actually returned:

FieldMeaning
requestedSection names from your categories array, if you sent one
entitledSections enabled for your organization
effectiveSections included in this response

execution describes how the run completed (for example single-pass fast vs multi-pass chained). quality summarizes coverage for the returned data.

Example response (abbreviated)

Optional controls

Request fieldPurpose
categoriesLimit which response sections to run — see Response categories
category_filter / flag_filterLimit which risk flags are evaluated — see Risk profiles
chain_fulfillmentRequest a deeper multi-pass assessment when true
bypass_cacheRequest a fresh assessment instead of a cached result
confidence_thresholdOmit fields below a confidence score (0–1)

What's next