Integrations Guide
Connect Epist.ai to your automation stack.
Integrations Guide
This guide explains how to connect Epist.ai to automation platforms like n8n, Zapier, Make, and Pipedream.
Prerequisites
To integrate Epist.ai with external tools, you need:
- An Epist Account.
- A valid API Key from the Dashboard.
1. Authentication
Epist.ai uses API Key authentication via the request header.
[!IMPORTANT] Header Name:
X-API-KeyValue:YOUR_API_KEY
Example (cURL)
curl -X 'GET' 'https://api.epist.ai/api/v1/stats/' \
-H 'X-API-Key: sk_live_...'2. n8n Integration
Since Epist is OpenAPI compliant, you can integrate it into n8n using the HTTP Request node.
Using HTTP Request Node
- Create an HTTP Request node.
- Authentication: Select "Generic Credential Type" -> "Header Auth".
- Name:
X-API-Key - Value:
[YOUR_API_KEY] - URL:
https://api.epist.ai/api/v1/audio/transcribe_url - Method:
POST
3. Zapier Integration
You can connect to Epist using Zapier's "Webhooks by Zapier".
Using Webhooks by Zapier
- Choose Webhooks by Zapier app.
- Event: Custom Request.
- Method:
POST - URL:
https://api.epist.ai/api/v1/search/ - Headers:
X-API-Key:[YOUR_API_KEY]Content-Type:application/json
4. OpenAPI Specification
For platforms that support importing OpenAPI specs:
Spec URL: https://api.epist.ai/api/v1/openapi.json