Vehicle Import & Management Platform
Streamline your vehicle inventory management with our powerful API and real-time updates. Import, track, and manage your vehicle fleet with ease.
Platform Features
Bulk Imports
Import large datasets of vehicle information with our easy-to-use API. Track import progress in real-time.
Real-time Updates
Stay updated with WebSocket integration providing instant notifications on job status and inventory changes.
Subscription Management
Integrated payment processing with Stripe for seamless subscription and transaction management.
API Documentation
Swagger Documentation
View Full DocsOur RESTful API is fully documented using Swagger UI. Explore endpoints, models, and test API calls directly from the browser.
GET /api/v1/vehicles - List all vehicles
POST /api/v1/imports - Create new import job
GET /api/v1/subscriptions - View subscription status
Real-time Updates
WebSocket Integration
Our platform uses Socket.IO to provide real-time updates for import jobs and inventory changes.
// Connect to WebSocket
const socket = io('https://api.customcar.com');
// Listen for job updates
socket.on('jobUpdate', (job) => {
console.log(`Job ${job._id} status: ${job.status}`);
});