Carmen Cloud Client by Adaptive Recognition
JavaScript/TypeScript client for Carmen Cloud by Adaptive Recognition. This unified library provides you with access to the Vehicle API, Transportation & Cargo API and the Storage & Hook API.
Supported API Versions
- Vehicle API: v1.4.1
- Transportation & Cargo API: v1.0.1
- Storage & Hook API: current version
🛠️ How to Install
npm install --save @adaptive-recognition/carmen-cloud-client
🚀 Usage
The three APIs available have separate client classes. For basic usage, see the examples below.
🚗 Vehicle API
import { VehicleAPIClient, Locations } from "@adaptive-recognition/carmen-cloud-client";
const client = new VehicleAPIClient({
apiKey: "<YOUR_API_KEY>",
services: { anpr: true, mmr: true },
inputImageLocation: Locations.Europe.Hungary,
cloudServiceRegion: "EU"
});
async function recognizeVehicle() {
const response = await client.send("./car.jpg");
console.log(response);
}
recognizeVehicle().catch(console.error);
🚚 Transportation & Cargo API
import { TransportAPIClient, CodeType } from "@adaptive-recognition/carmen-cloud-client";
const client = new TransportAPIClient({
apiKey: "<YOUR_API_KEY>",
type: CodeType.ISO,
cloudServiceRegion: "EU"
});
async function recognize() {
const response = await client.send("./container.jpg");
console.log(response);
}
recognize().catch(console.error);
📦 Storage & Hook API
import { StorageAndHookAPIClient } from ".";
const client = new StorageAndHookAPIClient({
apiKey: '<YOUR_API_KEY>',
cloudServiceRegion: 'EU'
});
const events = await client.getEvents('vehicle');
console.log('events:', events);
const status = await client.getStorageStatus();
console.log('status:', status);
const updatedStatus = await client.updateStorageStatus(
{ transport: true }
);
console.log('updatedStatus:', updatedStatus);
const createdHook = await client.createHook({
hookUrl: 'https://your-domain.com/your-hook-path',
apis: ['vehicle', 'transport']
});
console.log('createdHook:', createdHook);
const hooks = await client.getHooks();
console.log('hooks:', hooks);
const hook = await client.getHook('https://your-domain.com/your-hook-path');
console.log('hook:', hook);
const updatedHook = await client.updateHook(
'https://your-domain.com/your-hook-path',
{ vehicle: true, transport: true }
);
console.log('updatedHook:', updatedHook);
await client.deleteHook('https://your-domain.com/your-hook-path');
🔧 Development
For more information about developing and contributing to this project, see DEVELOPMENT.md.