Integrate Multando in Minutes
Add traffic violation reporting to your app with our SDKs. Available for Flutter, React Native, iOS, and Android.
3-Line Integration
Initialize, authenticate, and submit reports with minimal code
Drop-in UI Components
Pre-built report forms, camera capture, and location pickers
Offline Support
Reports queued locally and auto-submitted when connectivity returns
Auto Token Refresh
JWT tokens refresh transparently β no auth state management needed
i18n Built-in
English and Spanish out of the box, with extensible localization
Full Type Safety
Complete type definitions for Dart, TypeScript, Swift, and Kotlin
Quick Start
Choose your platform and start reporting in 3 steps
npm install @multando/react-native-sdkimport { MultandoProvider, useMultando } from '@multando/react-native-sdk';
// Wrap your app
<MultandoProvider config={{
baseUrl: 'https://api.multando.com/api/v1',
locale: 'en',
}}>
<App />
</MultandoProvider>
// In any component
const { auth, reports } = useMultando();
await auth.login('user@example.com', 'password');/reportsAuthCreate a violation report/reportsList reports (paginated, filterable)/reports/{id}Get report detail by ID or short_id/reports/by-plate/{plate}Reports by vehicle plate/reports/{id}AuthDelete a pending reportTwo Environments
Test your integration safely in sandbox before going live
Sandbox
For testing & development
Base URL
https://sandbox-api.multando.com/api/v1API Key Format
mult_test_xxxxxxxxxxxxxxxx- β Free unlimited testing
- β No real tokens or transactions
- β Higher rate limits (300/min)
Production
For live applications
Base URL
https://api.multando.com/api/v1API Key Format
mult_live_xxxxxxxxxxxxxxxx- β Real MULTA token rewards
- β Live data and transactions
- β Standard rate limits (60/min)
β οΈ Keys are environment-locked β Sandbox keys (mult_test_) only work on sandbox-api.multando.com. Production keys (mult_live_) only work on api.multando.com. They cannot be interchanged.
How It Works
Your app integrates via SDK. Reports flow through our API to the community for verification.
Your App
SDK integration
Multando API
Validation + storage
Community
Verification + rewards