Skip to main content
For AI agents: a documentation index is available at https://docs.coverbase.com/llms.txt — this page is also available in markdown by appending .md to the URL.
A vendor (cbvndr_...) is a parent supplier entity. A service (cbsvc_...) is a child entity under a vendor. This API creates and reads both. All endpoints are org-scoped to the API key. See API conventions for authentication, IDs, timestamps, idempotency, and the error envelope.
To upload, version, and search bills of materials (SBOM, AIBOM, HBOM, SaaSBOM) for a vendor or service, see the Bill of Materials API.
To upload evidence documents (SOC 2 reports, policies, contracts, questionnaires) for a vendor and link them to its services and assessments, see the Documents API.

The primary contact object

Both vendor and service endpoints accept/return a primary_contact. On a vendor it is the address the inherent-risk-questionnaire portal invite (and other vendor emails) are sent to; on a service it is the service-level point-of-contact. On read, primary_contact is derived from the stored contact personnel (first entry with an email) — for vendors it falls back to the vendor’s security contact email. It is null if no contact is set.

Assigning people (analysts, owners, watchers)

Vendors and services accept optional personnel assignments as arrays of user IDs (cbuser_...). All are optional; on create, omit them to assign no one. On update (PATCH), supplying an array replaces the existing set — pass [] to clear it, or omit the field to leave it unchanged.
These fields take Coverbase user IDs, not emails. Syncing from an external system (e.g. ServiceNow) that keys on email? Use the Users API to resolve an email to its cbuser_... ID — GET /v1/users?email= looks one up, and POST /v1/users provisions the user if they don’t exist yet (returning the existing user if they do).

Create a vendor

POST
POST /v1/vendors
Creates a parent vendor. Returns 201 Created with the full vendor object.

Request body

string
required
Vendor name.
string
Vendor website URL.
string
Vendor description.
string
Headquarters location.
string
How the vendor is used within the organization.
string
Your system’s identifier for this vendor (e.g. an Ariba request ID). Stored and echoed back; useful for correlation.
string[]
Risk analyst user IDs (cbuser_...) to assign. See assigning people.
string[]
Relationship owner user IDs (cbuser_...) to assign.
string[]
Watcher user IDs (cbuser_...) to assign.
object
The vendor point-of-contact (see the primary contact object). If supplied, email is required and validated.

Headers

string
required
Bearer ak_...
string
Optional. Replaying the same key within 24 hours returns the original 201 body. See Idempotency.

Example request

Example response

201 Created — the full vendor object (see response fields below):

Error responses

Create a child service

POST
POST /v1/vendors/{vendor_id}/services
Creates a service under an existing vendor. Returns 201 Created.
This endpoint does not honor Idempotency-Key — sending the header is harmless but has no effect. Retrying after a successful create makes a second service.

Path parameters

string
required
The parent vendor ID (cbvndr_...).

Request body

string
required
Service name.
string
Service description.
string
Your system’s identifier for this service.
string[]
Tag IDs (cbtag_...) to attach to the service.
string[]
Relationship owner user IDs (cbuser_...) to assign. See assigning people.
string[]
Watcher user IDs (cbuser_...) to assign.
object
The service point-of-contact (see the primary contact object). If supplied, email is required and validated.
Services do not have risk analysts — risk analysts are assigned on the parent vendor. Sending risk_analyst_ids to a service endpoint has no effect.

Example request

cURL

Example response

201 Created (see the service object):

Service object

string
Service ID (cbsvc_...).
string
The parent vendor ID.
string
Service name.
string | null
Service description.
string | null
Your external identifier, if supplied.
string[]
Tag value strings (empty array if none).
string[]
Relationship owner user IDs (cbuser_...). Empty array if none.
string[]
Watcher user IDs (cbuser_...). Empty array if none.
object | null
The service point-of-contact (see the primary contact object), or null.
integer
Unix timestamp (seconds).

Error responses

Update a service

PATCH
PATCH /v1/vendors/{vendor_id}/services/{service_id}
Updates a service. Only included fields change. Returns the updated service object.

Path parameters

string
required
The parent vendor ID (cbvndr_...).
string
required
The service ID (cbsvc_...). Must belong to vendor_id.

Request body

string
Service name.
string
Service description.
string[]
Replace the service’s tag set (tag IDs cbtag_...).
string[]
Replace the relationship owner set (user IDs cbuser_...). Pass [] to clear.
string[]
Replace the watcher set (user IDs cbuser_...). Pass [] to clear.
object
Replace the service point-of-contact (see the primary contact object). When supplied, email is required and validated.
external_id is set only at creation and is not updatable here. Services do not have risk analysts.

Example request

cURL

Error responses

List vendors

GET
GET /v1/vendors
Lists vendors in the API key’s org, newest first. Without filters it returns every vendor, paginated. Use it to enumerate vendors, resolve a vendor by name, or map your own identifier to a Coverbase vendor ID.
List rows are a lightweight summary — they omit the nested services and the personnel-assignment arrays. Fetch GET /v1/vendors/{vendor_id} for the full object.

Query parameters

string
Case-insensitive substring match on the vendor (or service) name.
string
Exact match on the vendor’s external_id — handy for mapping your system’s identifier back to a Coverbase vendor.
integer
default:"50"
Page size, 1–200.
integer
default:"0"
Number of rows to skip, for pagination.

Example request

cURL

Example response

200 OK:
object[]
The page of vendor summaries. Each carries id, external_id, name, website, description, hq_location, status, status_id, tags, use_case, tier, primary_contact, created_at, and updated_at. (No services or personnel arrays — see the note above.)
integer
Total vendors matching the filters (across all pages).
integer
The page size used.
integer
The offset used.

Retrieve a vendor

GET
GET /v1/vendors/{vendor_id}

Path parameters

string
required
The vendor ID (cbvndr_...).

Example request

cURL

Example response

Vendor object

string
Vendor ID (cbvndr_...).
string | null
Your external identifier, if set.
string
Vendor name.
string | null
Vendor website URL.
string | null
Vendor description.
string | null
Headquarters location.
string | null
Current status as a plain label string (e.g. "Active"). Org-customizable. null if unset.
string | null
ID (cbst_...) of the current status record.
string[]
Tag value strings (empty array if none).
string[]
Assigned risk analyst user IDs (cbuser_...).
string[]
Relationship owner user IDs (cbuser_...).
string[]
Watcher user IDs (cbuser_...).
string | null
Scale level ID (cbsclvl_...) for inherent risk.
string | null
Scale level ID (cbsclvl_...) for residual risk.
string | null
Type of engagement with this vendor.
string | null
How the vendor is used.
string | null
Derived vendor tier (e.g. tier_1, tier_2). Set by workflow tiering actions; null until derived.
object | null
The vendor point-of-contact (see the primary contact object), or null.
object[]
The vendor’s child services, each a service object. Empty array if none.
integer
Unix timestamp (seconds) of creation.
integer
Unix timestamp (seconds) of last update.

Error responses

Update a vendor

PATCH
PATCH /v1/vendors/{vendor_id}
Updates one or more fields. Only included fields change; omitted fields are untouched. The full, refreshed vendor object is returned.
Every body field is optional. Sending null for a field is treated the same as omitting it (no change) — there is no clear-to-null behavior.

Request body

string
Vendor name.
string
Vendor website URL.
string
Vendor description.
string
Headquarters location.
string
ID (cbst_...) of a status record to transition to.
string[]
Replace the entire tag set, using tag IDs (cbtag_...).
string[]
Replace the risk analyst set (user IDs cbuser_...). Pass [] to clear.
string[]
Replace the relationship owner set (user IDs cbuser_...). Pass [] to clear.
string[]
Replace the watcher set (user IDs cbuser_...). Pass [] to clear.
string
Scale level ID (cbsclvl_...) for inherent risk.
string
Scale level ID (cbsclvl_...) for residual risk.
string
How the vendor is used.
string
Type of engagement.
object
Replace the vendor point-of-contact (see the primary contact object). When supplied, email is required and validated.
external_id and tier are not updatable through this endpoint (external_id is set only at creation; tier is derived by workflows).

Example request

cURL
The response is the full vendor object (same shape as Retrieve a vendor).

Error responses

The vendor fact sheet

The fact sheet is AI-generated company intelligence about a vendor — company profile, products, public perception, financials, leadership, compliance/legal posture, and security posture. Coverbase assembles it from public sources; in the dashboard it powers the vendor “Fact Sheet” tab and its PDF export. These two endpoints let you read that data and trigger a regeneration programmatically. Generation is asynchronous. Trigger it with the refresh endpoint, then poll the fact sheet endpoint until status is "completed".

Retrieve a vendor’s fact sheet

GET
GET /v1/vendors/{vendor_id}/fact-sheet
Returns the current fact sheet for a vendor. A vendor that has never had a fact sheet generated returns 200 with status: null and every section null — it is not a 404.

Path parameters

string
required
The vendor ID (cbvndr_...).

Example request

cURL

Example response

200 OK:

Fact sheet object

string
The vendor ID (cbvndr_...).
string | null
ID of the underlying entity that holds the fact sheet data. null if the vendor is not yet linked to an entity.
string | null
Generation status — null, "pending", "completed", or "failed" (see the status table above).
string[]
Section names completed so far in the in-progress / most recent run. Empty array if none.
integer | null
Unix timestamp (seconds) the fact sheet was last updated. null if never generated.
object | null
Company profile (name, website, industry, HQ, founding year, headcount, revenue, etc.). null until generated.
object | null
Known products and offerings. null until generated.
object | null
News mentions, third-party reviews (BBB, Trustpilot, CFPB), and competitors. null until generated.
object | null
Public/private status, market cap, ticker/exchange, funding, and transactions. null until generated.
object | null
Leadership and headcount estimate. null until generated.
Legal actions, enforcement actions, and data-privacy certifications. null until generated.
object | null
Trust center URL, security contact, and known security incidents. null until generated.
Section objects are best-effort and their internal shape may evolve as Coverbase improves enrichment. Treat the presence of each field defensively; any individual section can be null even when status is "completed" if no data was found for it.

Error responses

Refresh a vendor’s fact sheet

POST
POST /v1/vendors/{vendor_id}/fact-sheet/refresh
Queues a (re)generation of the vendor’s fact sheet and returns immediately with 202 Accepted and status: "pending". Existing fact sheet data is cleared at the start of the run, so a GET made right after a refresh reflects the pending state. Poll the fact sheet endpoint until status is "completed".
This endpoint is not idempotent — each call queues a fresh generation run.

Path parameters

string
required
The vendor ID (cbvndr_...).

Example request

cURL

Example response

202 Accepted:
string
The vendor ID (cbvndr_...).
string | null
ID of the underlying entity, or null when the vendor is being linked to one for the first time as part of this run.
string
Always "pending" on a successful enqueue.
string
Human-readable acknowledgement.

Error responses