LumireCRM

Docs · SDK

PHP SDK

Pinned to API contract 1.0.0. Always check meta.version() on startup so a misconfigured client refuses to talk to a server it cannot understand.

Install

composer require lumirecrm/sdk

Quickstart

use LumireCRM\Client;

$crm = new Client('http://143.110.171.125:4000', apiKey: 'lum_live_REPLACE_ME');
print_r($crm->meta->version());
$traders = $crm->traders->list(['limit' => 20]);

Namespaces

  • auth
  • traders
  • accounts
  • transactions
  • deposits
  • withdrawals
  • kyc
  • support
  • integrations
  • webhooks
  • audit
  • meta

See API reference for endpoints not covered by a top-level method — every SDK exposes a request/do escape hatch.