Freshdesk
Free tierAI-powered customer service platform that puts people first, resolving complexity from day one
Free tier available·All audiences·Powered by Freshworks (Freddy AI)·API available
Key strengths
Freddy AI agents that autonomously resolve complex and repetitive queries 24/7Omnichannel support unifying email, chat, phone, and social in one workspaceReady-to-launch Vertical AI Agents with 50+ prebuilt agentic workflowsAI Copilot for human agents with summaries, reply suggestions, and live translationsTrusted by 74,000+ businesses with up to 80% query resolution via AI
Free tier + paid plans
San Mateo, USA
Founded 2010
No ratings yet
Technical Setup & API Overview
REST API
Freshdesk provides a comprehensive REST API for managing tickets, contacts, agents, and conversations programmatically.
# Create a ticket via API
curl -v -u your_api_key:X \
-H "Content-Type: application/json" \
-X POST \
-d '{"subject":"Server Down","description":"Web server is down","email":"user@example.com","priority":2,"status":2}' \
'https://yourdomain.freshdesk.com/api/v2/tickets'
Key API Endpoints
GET /api/v2/tickets— List and filter ticketsPOST /api/v2/tickets— Create a new ticketPUT /api/v2/tickets/:id— Update ticket fields, status, or priorityGET /api/v2/contacts— Retrieve customer contact recordsPOST /api/v2/conversations— Add replies or notes to tickets
Webhook & Event Integration
Freshdesk supports webhooks to trigger external workflows on ticket events (created, updated, resolved). These can be paired with tools like Zapier or custom middleware.
Freddy AI Configuration
- Freddy AI Agents are configured via the Freshdesk Admin panel using prebuilt or custom agentic workflow templates.
- AI Copilot is automatically available to agents within the ticket workspace — no additional SDK required.
- Freddy AI Insights integrates with the reporting dashboard and can surface anomalies or SLA breaches proactively.
Authentication
API uses HTTP Basic Auth with your API key as the username and X as the password. OAuth 2.0 is supported for third-party app integrations.
