# API Integrations Overview

URL: /en/docs/user-guide/integrations/api-overview
Last Updated: 2026-07-30T21:15:44.429Z

## Description
How the documented API and built-in integrations map to the actual product

## Available Actions
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
# API Integrations Overview

## Authentication

The API uses bearer authentication.

* Use an Admin Center session in the browser, or
* Create an API key from **Integrations & API Keys** and send it as `Authorization: Bearer ...`

## What The API Covers

The `/docs/api/v1` reference is generated from the OpenAPI files and documents endpoints for areas such as:

* Accounts
* Contacts
* Documents
* Certifications
* Access requests
* Knowledge base entries
* Users
* Custom tabs
* NDA templates
* Analytics
* Built-in integrations

## Built-In Integration APIs

The integration endpoints in the reference are for the integrations that are implemented in the product:

* Google Docs / Google Drive
* Notion
* Confluence
* Slack
* DocuSign

These endpoints support the Admin Center UI and shipped product flows.

## Example

Use standard HTTP clients such as `curl` or `fetch`.

```bash
curl -X GET "https://app.orbiqhq.com/api/v1/documents" \
  -H "Authorization: Bearer $ACCESS_TOKEN"
```

```ts
const response = await fetch("https://app.orbiqhq.com/api/v1/documents", {
  headers: {
    Authorization: `Bearer ${process.env.ACCESS_TOKEN}`,
  },
});

if (!response.ok) {
  throw new Error(await response.text());
}

const payload = await response.json();
console.log(payload);
```

## Important Notes

* Slack and DocuSign endpoints are for the shipped integrations, not for arbitrary third-party webhook setups

## Related Docs

* [Integrations & API Keys](/en/docs/user-guide/integrations)
* [API reference](/en/docs/api/v1)


## Code Examples Found
- bash: curl -X GET "https://app.orbiqhq.com/api/v1/documents" \
  -H "Authorization: Bearer $ACCESS_TOKEN"...
- ts: const response = await fetch("https://app.orbiqhq.com/api/v1/documents", {
  headers: {
    Authoriz...