Forlena CRM API
Interactive API Docs (V1)
Use the explorer to test endpoints live. Click Authorize and paste your API key as: Bearer fc_...
First Successful API Call
Test connectivity with a simple list request:
bash
curl -X GET "https://forlena.com/api/v1/crm/deals?limit=5" \
-H "Authorization: Bearer fc_your_api_key_here"javascript
const res = await fetch("https://forlena.com/api/v1/crm/deals?limit=5", {
headers: { Authorization: "Bearer fc_your_api_key_here" },
});
const json = await res.json();
console.log(json);Base URL: https://forlena.com/api/v1/crm
Interactive Explorer
This explorer sends real API requests. Rate limits and monthly AI quota apply, plus monthly total API quota. Quota alerts are shown in the dashboard only (no email alerts).