Getting Started
Install linxio-js and make your first authenticated Linxio request.
Install
Create a client
Authenticate
Read vehicles
Need full method signatures and return shapes? See the SDK Reference and API Reference.
Install linxio-js and make your first authenticated Linxio request.
The package ships ESM, CommonJS, and TypeScript declarations. No configuration needed — import and go.
createClient(options)Instantiate a client once per process. Pass optional configuration for timeout, retry behaviour, and a custom fetch implementation.
timeoutMs30000retry/loginlinxio.auth.login(payload)Login stores the session in memory. Subsequent service calls include the bearer token automatically. Store the session yourself if your process needs to survive restarts.
linxio.vehicles.list(params)Paginated list with field projection. Use iterate() to auto-page
everything into one array, or stream() for lazy async iteration.
Need full method signatures and return shapes? See the SDK Reference and API Reference.