Developer Overview

Developer access for branded link automation and secure account-scoped integrations.

Use API keys to verify scope, create branded links on approved hosts, and connect the platform to your workflows.

Live Today Account-scoped API keys now expose a cleaner REST-ready surface for scope, create, search, and reporting while the older LucidTrac-compatible action routes remain available.

Live Endpoints

  • Scope: https://lcdtrc.link/api-v1/view/account/scope
  • Create: https://lcdtrc.link/api-v1/create/links
  • Search: https://lcdtrc.link/api-v1/view/links/search
  • Report: https://lcdtrc.link/api-v1/view/links/report
  • Preferred auth: omniv_uid header

Access And Usage

  • Portal API keys start on Pro and inherit into higher plans.
  • External create calls stay inside the account's allowed branded-host scope.
  • Header auth, bearer auth, and query auth remain accepted for compatibility.
  • Existing connected workflows remain supported alongside these endpoints.

Legacy Compatibility

  • Legacy scope: https://lcdtrc.link/api.php?action=owlnk_portal_api_scope
  • Legacy create: https://lcdtrc.link/api.php?action=owlnk_portal_api_create
  • LucidTrac ERP short-link creation still routes through the same core Owlnk engine.

Quick Start

1. Check scope curl -H "omniv_uid: YOUR_PORTAL_API_KEY" "https://lcdtrc.link/api-v1/view/account/scope"
2. Create a branded link curl -X POST -H "omniv_uid: YOUR_PORTAL_API_KEY" --data-urlencode "url=https://example.com/landing" --data-urlencode "create_host=go.example.com" "https://lcdtrc.link/api-v1/create/links"
3. Search links curl -H "omniv_uid: YOUR_PORTAL_API_KEY" "https://lcdtrc.link/api-v1/view/links/search?search=spring&per_page=10"
4. Open a link report curl -H "omniv_uid: YOUR_PORTAL_API_KEY" "https://lcdtrc.link/api-v1/view/links/report?link_id=12345&traffic_filter=all"
Compatibility note X-API-Key, Authorization: Bearer, and ?uid=... are still accepted for legacy callers.