Follow this guide to start building with Lattis - Nexus. Learn how to set up your development environment and make your first API call.
Sign up for a Lattis - Nexus developer account
Create API keys for authentication
Install the SDK for your preferred language
npm install @lattis-nexus/sdkpip install lattis-nexus<dependency>
<groupId>com.lattisnexus</groupId>
<artifactId>sdk</artifactId>
<version>2.0.0</version>
</dependency>Set up the client with your API key
import { LattisNexusClient } from '@lattis-nexus/sdk';
const client = new LattisNexusClient({
apiKey: 'your_api_key'
});from lattis_nexus import Client
client = Client(api_key='your_api_key')Test your setup with a simple API call
// Get fleet vehicles
const vehicles = await client.fleet.getVehicles();
console.log('Total vehicles:', vehicles.length);# Get fleet vehicles
vehicles = client.fleet.get_vehicles()
print('Total vehicles:', len(vehicles))