For Agents
Register and unregister webhooks for the GoZen DeepBot chatbot and read the authenticated user profile. API-key authenticated.
Get started with GoZen DeepAgent API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"register a DeepBot webhook"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with GoZen DeepAgent API API.
Register an outbound webhook so DeepBot conversation events reach external systems via /integration/zapierapp/webhook
Unregister a webhook to stop receiving DeepBot events without rotating the API key
Read the authenticated user profile via /integration/zapierapp/auth for connection-test handshakes
Wire DeepBot conversations into Zapier or any webhook consumer
GET STARTED
Use for: Register a webhook for new DeepBot conversation events, Stop sending DeepBot events to a deprecated webhook URL, Verify a DeepBot api-key is valid, Read the user profile for the current DeepBot api-key
Not supported: Does not handle bot training, conversation transcripts, or end-user messaging — use for webhook registration and api-key validation against the GoZen Zapier surface only.
Jentic publishes the only available OpenAPI document for GoZen DeepAgent API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for GoZen DeepAgent API, keeping it validated and agent-ready. GoZen DeepAgent (DeepBot) lets businesses build a custom GPT-style chatbot, embed it on a website, and use it for customer support, lead generation, and user engagement. The Zapier-facing API exposed here is small but pivotal: it returns the authenticated user profile and lets external systems register and unregister webhooks so DeepBot conversations can fan out to CRMs, helpdesks, and notification channels. Authentication is via a single api-key header issued from the DeepBot dashboard.
Verify an API key is valid before kicking off a longer integration flow
Patterns agents use GoZen DeepAgent API API for, with concrete tasks.
★ Webhook-Based Chatbot Integration
Forward DeepBot chatbot events to a CRM, helpdesk, or notification channel by registering a webhook through POST /integration/zapierapp/webhook. The receiving URL gets called with the conversation payload each time DeepBot fires an event. When the integration is retired or the URL changes, DELETE /integration/zapierapp/webhook removes it without affecting the api-key. This is the canonical way to fan out chatbot data without polling.
POST /integration/zapierapp/webhook with target URL https://hooks.example.com/deepbot to register a webhook, then verify the registration via GET /integration/zapierapp/auth
API-Key Validation and Connection Test
GET /integration/zapierapp/auth returns the user profile associated with the supplied api-key. Integration platforms call this on connection setup to validate the key and surface the connected account name to the user. It is also the cheapest call you can make to confirm the key is still valid before running a longer workflow.
Call GET /integration/zapierapp/auth and confirm the api-key resolves to a user profile before triggering a webhook registration
Lead Capture from Chatbot to CRM
When DeepBot collects a lead during a conversation, the registered webhook fires and the receiving system creates a CRM contact. Pair POST /integration/zapierapp/webhook with a CRM-side webhook receiver to convert chatbot conversations into qualified leads in seconds rather than batched exports. Particularly useful for SaaS sites that want every chatbot lead in HubSpot or Salesforce immediately.
Register a webhook pointing to the CRM intake endpoint and confirm a test conversation creates a contact downstream
AI Agent Connector Setup
An AI agent uses GoZen DeepAgent through Jentic to set up its own webhook so DeepBot conversations stream into the agent's downstream tooling. The agent searches Jentic by intent, loads the schema, and registers the webhook with the agent-supplied callback URL. Jentic injects the api-key from the vault so the agent never holds the credential.
Search Jentic for 'register a DeepBot webhook', load the schema, and register a callback URL the agent owns
3 endpoints — jentic publishes the only available openapi specification for gozen deepagent api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/integration/zapierapp/auth
Get the user profile for the supplied api-key
/integration/zapierapp/webhook
Register a webhook for DeepBot events
/integration/zapierapp/webhook
Unregister a webhook
/integration/zapierapp/auth
Get the user profile for the supplied api-key
/integration/zapierapp/webhook
Register a webhook for DeepBot events
/integration/zapierapp/webhook
Unregister a webhook
Three things that make agents converge on Jentic-routed access.
Credential isolation
DeepBot api-keys are stored encrypted in the Jentic vault. Agents trigger webhook registration through Jentic without ever holding the api-key in their context, and keys can be rotated centrally without touching agent code.
Intent-based discovery
Agents search Jentic by intent — for example 'register a DeepBot webhook' — and Jentic returns the matching operation with its schema, so the agent supplies only the callback URL.
Time to first call
Direct DeepBot integration: a few hours for connection-test plus webhook registration and lifecycle handling. Through Jentic: minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Drift API
Drift offers a chatbot platform with native conversation, contact, and lead APIs that go beyond DeepBot's Zapier surface.
Choose Drift when you need direct conversation and contact APIs rather than a webhook-only integration.
ChatBot.com API
ChatBot.com is a comparable chatbot builder with broader API coverage for stories, intents, and conversations.
Choose ChatBot.com when you need to manage stories and training data via API — DeepBot exposes only the integration surface here.
HubSpot Account Info API
HubSpot is a typical destination for chatbot leads captured by DeepBot via webhook.
Use HubSpot as the receiving CRM when DeepBot fires a lead-captured webhook.
Specific to using GoZen DeepAgent API API through Jentic.
Why is there no official OpenAPI spec for GoZen DeepAgent API?
GoZen does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call GoZen DeepAgent API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the GoZen DeepAgent API use?
GoZen DeepAgent uses an `api-key` header issued from the DeepBot dashboard. Every request must include `api-key: <your key>`. Jentic stores the key encrypted in the vault so agents never see it; the header is injected at execution time.
Can I register a webhook with the GoZen DeepAgent API?
Yes — POST /integration/zapierapp/webhook registers an outbound webhook URL that DeepBot calls when conversation events occur. DELETE /integration/zapierapp/webhook removes the registration. This is the primary mechanism for streaming chatbot conversations into a CRM, helpdesk, or any other system.
What are the rate limits for the GoZen DeepAgent API?
GoZen does not publish fixed rate limits for this Zapier-facing surface. The endpoints are infrequent by design — you call /integration/zapierapp/auth on connection setup and /integration/zapierapp/webhook to register or unregister. If you need to rotate webhooks at scale, throttle the calls and back off on any 429 response.
How do I wire DeepBot into a CRM through Jentic?
Run `pip install jentic`, search for 'register a DeepBot webhook', load the POST /integration/zapierapp/webhook schema, and execute with the CRM's intake URL. Jentic injects the api-key automatically. Then use a separate Jentic call to your CRM (for example HubSpot) so the inbound webhook payload becomes a CRM contact.
Can I have multiple webhooks registered at once?
The Zapier-facing surface is designed for a single webhook URL per connected app. To fan out events to multiple destinations, register a single webhook on a relay that you own (for example a small serverless function) and have the relay multicast events. This is the typical pattern when piping DeepBot into both a CRM and a chat notification channel.