LumireCRM

Docs · SDK

Python 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

pip install lumirecrm-sdk

Quickstart

from lumirecrm import LumireCRM

client = LumireCRM(
    base_url="http://143.110.171.125:4000",
    api_key="lum_live_REPLACE_ME",
)

print(client.meta.version())  # → {'contract_version': '1.0.0', ...}
traders = client.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.