Centralized proxy for GoHighLevel API
0
0
0
0
No API keys yet. Create one above.
Instead of calling GHL directly, point your tools to this gateway:
// Before (direct GHL call)
fetch("https://services.leadconnectorhq.com/contacts/abc123", {
headers: { Authorization: "Bearer pit-xxx...", Version: "2021-07-28" }
})
// After (through gateway)
fetch("http://localhost:3463/api/proxy/contacts/abc123", {
headers: { "X-Gateway-Key": "your-key-here" }
})