Acrewity Integration Guide
Step-by-step integration guides for popular automation platforms and development tools.
Quick Start
All Acrewity services use:
- Base URL:
https://www.acrewity.com - Endpoint:
POST /api/services/execute - Authentication: Bearer token with API key (format:
ak_...)
Integration Platforms
n8n Integration
Recommended: Use the Acrewity Community Node
The easiest way to integrate with n8n is using our official community node:
- In n8n, go to Settings → Community Nodes
- Search for
n8n-nodes-acrewityand install - Add your API key in the credentials
- Drag the Acrewity node into your workflow
The community node provides:
- Pre-built actions for all services
- Auto-complete for operations and parameters
- Built-in error handling
- No manual JSON configuration needed
Alternative: HTTP Request Node
You can also use n8n's HTTP Request node:
- Method: POST
- URL:
https://www.acrewity.com/api/services/execute - Authentication: Add Header
Authorization: Bearer YOUR_API_KEY - Body: JSON with
service,operation, andparameters
Zapier Integration
Connect Acrewity with 5,000+ apps using Zapier's Webhooks by Zapier action:
- Action: POST
- URL:
https://www.acrewity.com/api/services/execute - Headers: Add
Authorization: Bearer YOUR_API_KEY - Data: Set up your service parameters
Make.com Integration
Use Make.com's HTTP module to integrate:
- Module: HTTP > Make a request
- Method: POST
- URL:
https://www.acrewity.com/api/services/execute - Headers:
Authorization: Bearer YOUR_API_KEY - Body: Configure service parameters
Custom Applications
Build custom integrations using standard HTTP requests:
cURL Example:
curl -X POST https://www.acrewity.com/api/services/execute
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{"service": "email-access", "operation": "send_email", "parameters": {"to": "user@example.com", "subject": "Test", "text": "Hello"}}'
JavaScript Example:
const response = await fetch('https://www.acrewity.com/api/services/execute', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
serviceId: 'email-access',
operation: 'send_email',
parameters: {
to: 'user@example.com',
subject: 'Test',
text: 'Hello'
}
})
});
const data = await response.json();
Security Best Practices
- Never commit API keys to version control
- Use environment variables for API keys
- Create separate keys for development and production
- Rotate keys regularly
- Monitor key usage in the dashboard
Support
- Documentation: www.acrewity.com/docs
- Support Email: our support team via the dashboard
- Dashboard: acrewity.com/dashboard
Next Steps
- API Reference - Complete API details
- Email Access - Send and receive emails
- URL to Markdown - Convert web pages to Markdown