No fee, no card. The key authorizes the client against our endpoint for 90 days.
Standard-library Python — nothing to install. Unzip it next to your code.
Set your key and integrate in one line. Full examples are in the zip.
copyfrom swc import SWCOptimizer opt = SWCOptimizer(license_key="YOUR-KEY", n=len(x0)) x = opt.start(x0) for _ in range(rounds): x = opt.step(measure(x), score=objective(x)) opt.end()
Confirms your key is live by running a real session through the endpoint right here.