Multando
Developer Portal

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-sdk
import { 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');

API Reference

Base URL: https://api.multando.com/api/v1

Full Swagger docs

POST/reportsAuth
GET/reports
GET/reports/{id}
GET/reports/by-plate/{plate}
DELETE/reports/{id}Auth

Two Environments

Test your integration safely in sandbox before going live

πŸ§ͺ

Sandbox

For testing & development

Base URL

https://sandbox-api.multando.com/api/v1

API 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/v1

API 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

Ready to integrate?

Get your API key and start building in minutes.