POST/v2/riskBeta
Submit a risk job
Starts an asynchronous risk assessment for a company and returns immediately with a job you can poll. Research runs in the background and can take a few minutes; you never hold a long-lived connection. Use the returned poll_url to check progress and retrieve the final result, or register a webhook to be notified on completion.
Beta. This endpoint is available for production integrations, but fields, categories, and credit weights may change without a version pin.
Base URLhttps://api.relativity6.com
Request body
| Field | Type | Required | Description |
|---|
| company_name | string | Required | Legal or trade name of the business (2–200 characters). |
| website | string | Optional | Primary website domain (for example, acmerobotics.com). Improves match accuracy. |
| address | string | Optional | Street address. |
| city | string | Optional | City. |
| state | string | Recommended | State or region code. Strongly recommended to disambiguate the entity. |
| zip | string | Optional | Postal or ZIP code. |
| country | string | Optional | Two-letter country code (for example, US). |
| policy_id | string | Optional | Your own reference id, echoed back and stored with the result for reconciliation. |
| plan | string | One of plan, entitlements, or addons | Named bundle that determines which categories run — for example "core". Every request must state what to run. Omitting plan, entitlements, and addons returns 400. See Categories & access.core · core_plus_government · core_plus_risk · core_plus_property · core_plus_compliance_lists |
| entitlements | string[] | One of plan, entitlements, or addons | Fine-grained capability ids to run. Use instead of plan for precise control. A request with none of plan, entitlements, or addons returns 400. The resolution backbone and summary are always included. |
| addons | string[] | One of plan, entitlements, or addons | Additional named bundles layered on top of plan. addons alone is a valid selection. |
| enabled_categories | string[] | Optional | Deprecated. Legacy category id list — prefer entitlements, plan, or addons. Categories not on your account are skipped. |
| naics_year | string | Optional | NAICS vintage for industry classification (for example, 2022).2017 · 2022 |
| classify | object | Optional | Industry classification options. |
| families | string[] | Optional | Code families to return (for example, naics, sic). | | naics_year | string | Optional | NAICS vintage when classify is set.2017 · 2022 |
|
| business_risk_flags | object | Optional | Filters and profile selection for the business risk flags category. |
| category_filter | string[] | Optional | Limit evaluation to specific flag categories. | | flag_filter | string[] | Optional | Limit evaluation to specific flag names. | | profile_source | string | Optional | Which risk profile drives flag evaluation when profile_id is omitted. default uses the Business Risk Flags package; org uses the organization's active default.default · org | | profile_id | string | Optional | Optional portfolio override. UUID of an org-owned profile or a global package the organization has installed. Takes precedence over profile_source. Returns 400 if the profile is not available to the organization. |
|
| osha | object | Optional | Options for the OSHA public-records category. |
| layer | number | Optional | Inspection depth tier (1, 2, or 3).1 · 2 · 3 |
|
| cache | object | Optional | Request cache control. |
| mode | string | Optional | default uses the cache; ignore bypasses it for this request.default · ignore |
|
Response
| Field | Type | Required | Description |
|---|
| job_id | string | Required | Unique id for this job. Use it to poll status and to match webhook deliveries. |
| status | string | Required | Lifecycle state. Always queued on the initial response.queued · running · completed · failed |
| company_name | string | Optional | Company name echoed from the request. |
| poll_url | string | Required | Relative path to poll for status and the final result (GET /v2/risk/{job_id}). |
| created_at | string (ISO 8601) | Optional | When the job was accepted. |