Account isolation
A key only reads resources for the account it belongs to.
Tip: routing rules run before the classic split, then fallback takes over.
Beta API
The Linka Factory API lets you read account, campaign and short-link information for reporting, internal tools, Make, Zapier or automation agents.
Beta status: the API is read-only. Writes for campaigns, links, routing and domains will open later after permissions and audit logs are hardened.
A key only reads resources for the account it belongs to.
Available scopes are limited to read access: account, campaigns and short links.
Calls increase the usage counter and record last use.
GET/api/v1/accountReads the account, active plan, limits and usage status.
GET/api/v1/campaigns?limit=50Lists campaigns visible to the API key.
GET/api/v1/links?limit=50Lists short links visible to the API key.
cURL
curl https://linkafactory.com/api/v1/account \
-H "Authorization: Bearer lf_sk_..." \
-H "Accept: application/json"JSON
{
"ok": true,
"account": {
"id": "acc_...",
"slug": "astrak-agence",
"name": "Astrak agence"
},
"plan": {
"slug": "pro",
"campaignLimit": 25,
"shortLinkLimit": 2000,
"routingRuleLimit": 25
}
}