Integrate with Powerful API
Easily integrate Dendy into your existing systems. Full flexibility with RESTful API, GraphQL and Webhook support.
RESTful API
Easy integration with standard HTTP methods
GraphQL
Flexible queries and optimized data fetching
Webhooks
Real-time notifications and automatic triggers
Secure
Secure access with OAuth 2.0 and API key
Quick Start
Integrate within minutes with your preferred method
// REST API Example
fetch('https://api.dendy.com/v1/feedback/collect', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
channel: 'whatsapp',
message: 'Great product!',
metadata: {
customer_id: '12345',
product_id: 'prod_001'
}
})
})
.then(response => response.json())
.then(data => console.log(data));API Endpoints
Programmatic access to all our features
POST
/api/v1/feedback/collectCollect customer feedback
channelmessagemetadata
GET
/api/v1/insightsGet analysis results
date_rangechannelsentiment
POST
/api/v1/survey/createCreate new survey
titlequestionschannels
GET
/api/v1/reportsFetch reports
typeformatperiod
Ready to Explore the API?
Get started right away with detailed documentation and sample code