Connect AI to every tool.
Enterprise security built in.

Image
Powering both large enterprises and scaling startups

Discover Credal's success stories

View All Case Studies
Image
Integrate

Pull data from any source

Image
Secure

Inherit & enforce access controls

Image
Search

Find anything across your data.

Image
Code

Flexible and secure API

Image
Deploy

Use Credal agents anywhere

Image
Image
Synchronize Permissions
Audit Access
Redact PII
ImageImageImage
Image
sendMessage
Send a message to a co-pilot
uploadDocumentUrl
Upload a document via its url
createDocumentCollection
Create a collection of related documents with shared data
listAuthorizedResources
List resources that the user is authorized to do actions on
searchDocumentCatalog
Search across all documents
Post
/v0/copilots/sendMessage
/v0/catalog/uploadDocumentUrl
/v0/documentCollections/createDocumentCollection
/v0/permissions/listAuthorizedResources
/v0/search/searchDocumentCatalog
$ curl -X POST https://api.credal.ai/api/v0/copilots/sendMessage
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "message": "Do we support Hubspot import?",
>             "userEmail": "[email protected]",
> }'
$ curl -X POST https://api.credal.ai/api/v0/catalog/uploadDocumentUrl
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "documentUrl": "https://docs.google.com/document/d/1QFOA0lgNycFmdZJQr",
> }'
$ curl -X POST https://api.credal.ai/api/v0/documentCollections/createDocumentCollection
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "collectionName": "Customer Meeting Transcripts",
>             "embeddingsModel": "text-embedding-ada-002",
>             "distanceMetric": "EUCLIDEAN",
>             "customMetadataSchema": {
>                 "fields": [
>                 { "name": "customerName", "type": "STRING" },
>                 { "name": "meetingDate", "type": "STRING" },
>                 ]
>             }
> }'
$ curl -X POST https://api.credal.ai/api/v0/permissions/listAuthorizedResources
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "action": "READ"
> }'
$ curl -X POST https://api.credal.ai/api/v0/search/searchDocumentCatalog
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "searchQuery": "ABC Corp",
>             "searchOptions": {
>                 "maxResults": 5
>             }
> }'
Image

Connect your company's data securely

Out-of-the-box data integrations make it easy to get started

Image

Pre-built data connectors

Connect Credal with Slack, GSuite, Notion, Microsoft, Salesforce, Confluence, and more - instantly.

Image
Sync permissions from source systems
Image
Fully configurable (cloud vs. on prem, etc.)
Image
Enterprise RAG, search, & chat functionality on day 1
Image

Custom data connectors

Many enterprises have custom or proprietary data sources they want to connect LLMs to. Credal solves this.

Image
Real-time sync, including permissioning
Image
Supports all common file functions (JSON, XML, CSV...)
Image
Manage ETL pipelines, scheduling, and config in our UI

Deploy generative AI with full security and compliance

Credal makes it easy to inherit and sync permissions, audit data access, and safeguard PII from touching models.

Permissions

Credal synchronizes permissions across all source systems, ensuring no data leakage and full compliance for your company’s use of generative AI.

Image
Sync permissions from all source systems
Image
Automatically update permissions cache in real-time, synced with SSO
Image
Granular and configurable access controls
Image
Image

Auto Redaction

Credal can automatically replace PII with placeholders before passing it to third-party modules. Then, Credal can restore PII by swapping out the placeholders.

Image
Prevent leakage of PHI, PII, and PCI with high accuracy
Image
Protect secrets, API keys, & credentials - improving your security posture
Image
Helps you stay compliant with HIPAA

Comprehensive Audit Capabilities

Full audit logging for generative AI in your business, including prompts, data and responses.

Image
Stay compliant and secure
Image
Review organizational use of AI models to improve your business
Image
Integrates with Splunk, Prometheus, Datadog and more
Image
Image

SOC 2 + GDPR + CCPA compliant

Credal infrastructure is SOC 2 Type 2 compliant, tested and verified
Image

Cloud + On Premise

We support both on premise and cloud deployments. Deploy Credal in the way that works best for your business.
Image

Enforce Acceptable Use Policies

Upload your policies and breathe easy: oversight, auditing and alerting for your IT team are built into Credal

Build AI-powered applications using our flexible API

Credal’s simple REST API enables developers to build and deploy apps seamlessly. Discover our documentation.

sendMessage
Send a message to an agent
uploadDocumentUrl
Upload a document via its url
createDocumentCollection
Create a collection of related documents with shared data
listAuthorizedResources
List resources that the user is authorized to do actions on
searchDocumentCatalog
Search across all documents
Post
/v0/copilots/sendMessage
/v0/catalog/uploadDocumentUrl
/v0/documentCollections/createDocumentCollection
/v0/permissions/listAuthorizedResources
/v0/search/searchDocumentCatalog
$ curl -X POST https://api.credal.ai/api/v0/copilots/sendMessage
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "message": "Do we support Hubspot import?",
>             "userEmail": "[email protected]",
> }'
$ curl -X POST https://api.credal.ai/api/v0/catalog/uploadDocumentUrl
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "documentUrl": "https://docs.google.com/document/d/1QFOA0lgNycFmdZJQr",
> }'
$ curl -X POST https://api.credal.ai/api/v0/documentCollections/createDocumentCollection
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "collectionName": "Customer Meeting Transcripts",
>             "embeddingsModel": "text-embedding-ada-002",
>             "distanceMetric": "EUCLIDEAN",
>             "customMetadataSchema": {
>                 "fields": [
>                 { "name": "customerName", "type": "STRING" },
>                 { "name": "meetingDate", "type": "STRING" },
>                 ]
>             }
> }'
$ curl -X POST https://api.credal.ai/api/v0/permissions/listAuthorizedResources
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "action": "READ"
> }'
$ curl -X POST https://api.credal.ai/api/v0/search/searchDocumentCatalog
>         -H "Authorization: Bearer <apiKey>" \
>         -H "Content-Type: application/json" \
>         -d '{
>             "searchQuery": "ABC Corp",
>             "searchOptions": {
>                 "maxResults": 5
>             }
> }'
Image

Supports multiple models

One API integration gets you the latest models from OpenAI, Anthropic, Google and more
Image

Fully interoperable and multimodal

Drop-in support for common endpoints such as text/chat completions, images, and popular libraries such as LangChain
Image

Secure and performant

Focus on building your apps; Credal takes care of performance, cost, and security logging automatically
Image

Build AI tooling using Agents

Credal includes pre-built UI frameworks and low-code / no-code tooling. Implement workflows without developer support.

Image
Image
Pick your model, data, and prompt
Image
Deploy your agent wherever your team works
ImageImageImageImage
Configure UI for your agents
Examples:
IT Support Bot
AML Assistant
Incident Timeline Bot

Credal is loved by customers

Discover Credal's success stories

Image

"It’s rare to find an AI tool that actually delivers immediate business impact, but Credal does. The team are incredible partners and have helped us achieve far above market AI adoption: 85% of our entire organization is now on board, and it's one of the most loved tools we have."

Naeem Ishaq
Chief Financial Officer, Checkr
Read the full case study →
Image

Give your team agents to get work done anywhere

Credal gives you everything you need to supercharge your business using generative AI, securely.

Ready to dive in?

Get a demo