Documentation & Guides

Build with eChallanDeveloper Resources

Comprehensive documentation, guides, and tools to help you integrate vehicle compliance features into your applications quickly and efficiently.

Quick Start Guide

Get up and running with the eChallan API in just a few minutes

1

Get API Keys

Sign up and generate your API credentials from the dashboard

// Get your API key from dashboard
const API_KEY = 'your_api_key_here';
2

Make First Call

Test the API with a simple vehicle data fetch

curl -X GET 'https://echallan.app/vehicle/DL01AA1234' \
  -H 'Authorization: Bearer YOUR_API_KEY'
3

Handle Response

Process the JSON response in your application

{
  "vehicle_number": "DL01AA1234",
  "rc_status": "valid",
  "pending_challans": 2
}

API Reference

Comprehensive reference for all available API endpoints

GET/v1/vehicle/{number}

Fetch complete vehicle information including RC and challan data

GET/v1/challans/{vehicle}

Get all pending challans for a specific vehicle

POST/v1/challans/pay

Process challan payment through the platform

GET/v1/renewals/{vehicle}

Check renewal status for fitness, permit, and insurance

Official SDKs

Use our official SDKs to integrate faster in your preferred programming language

Node.js

Installation:

npm install echallan-sdk

Usage:

const eChallan = require('echallan-sdk');
const client = new eChallan(API_KEY);

Python

Installation:

pip install echallan-python

Usage:

from echallan import Client
client = Client(api_key='YOUR_API_KEY')

PHP

Installation:

composer require echallan/php-sdk

Usage:

use eChallan\Client;
$client = new Client('YOUR_API_KEY');

Developer-Friendly Features

Built with developers in mind, our platform offers everything you need for seamless integration

Fast Response Times

Sub-200ms API response times for all endpoints

Secure Authentication

OAuth 2.0 and JWT-based secure authentication

Real-time Data

Live data directly from government databases

24/7 Support

Developer support available round the clock

Ready to Start Building?

Get your API keys and start integrating vehicle compliance features into your application today