Skip to main content
c.technology logo c.technology logo Modern vehicles generate enormous amounts of data - from GPS coordinates and engine diagnostics to environmental sensors and user interactions. The c.technology developer platform abstracts the complexity of vehicle connectivity, data processing, and real-time synchronization, allowing you to focus on creating exceptional user experiences rather than managing infrastructure. From simple location tracking to sophisticated predictive maintenance algorithms, the platform scales with your needs while maintaining enterprise-grade security and reliability. The platform is essentially sliced into three layers:
  • Applications: Web and mobile apps, dashboards, reporting tools, and developer SDKs.
  • Systems: Storage services, data processing pipelines, API gateways, authentication services, payment processing, and analytics engines.
  • Infrastructure: Scalable containerized cloud services, real-time and spatial databases, message queues, and IoT connectors.
Usually, as a developer, you will interact with the systems layer via APIs, while using the applications layer to manage your account, vehicles, and data. Commonly, you do not have to concern yourself with the underlying infrastructure, as it is fully managed by us.

System architecture

The following diagram provides a high-level overview of the c.technology platform architecture, illustrating how different components interact to deliver a seamless vehicle connectivity experience. Of most interest to developers are the vehicle data ingestion points (or more generally, communication connectors), and the REST and real-time APIs that provide access to vehicle data and platform functionality.

Vehicle communication

Vehicles connect to the platform through a variety of communication methods:
  • Telematics units: We collaborate with manufacturers whose devices work out of the box with our platform (see the hardware section for details). Other devices can be integrated via standard protocols or custom connectors developed with us.
  • Mobile apps: Our SDKs enable mobile applications to act as intermediaries, relaying data between vehicles and the platform.
  • Cloud-to-cloud integrations, other custom setups: Via HTTP APIs or MQTT brokers, vehicles living on existing cloud platforms can be integrated with our system.
The quickest options are telematics units that support standard protocols such as OBD2 or NMEA 2000, devices with a known CAN-bus specification (DBC file), or the HTTP ingestion endpoints.

REST APIs for core functionality

Our primary API follows REST conventions with a complete OpenAPI specification that enables automatic code generation and interactive documentation. Authentication uses tokens. Users obtain tokens with email and password; organizations (usually) use API keys, which are sent in the same header as Authorization: Api-key .... Rate limiting ensures fair usage across all clients while preventing abuse. Generally, you will use the web interface for initial setup and configuration, as well as team and billing management, and occasional vehicle and support tasks. You then may use the REST API for other platform operations, including:
  • Vehicle management: Register vehicles, update configurations, and manage vehicle groups.
  • Data retrieval: Access historical vehicle data, trip logs, and sensor readings.
  • Command and control: Send commands to vehicles, such as locking/unlocking doors or starting/stopping engines.

Real-Time APIs

For applications requiring immediate updates, the WebSocket-based real-time API delivers vehicle data as events occur. This supports updates to the following data types:
  • Vehicle status updates: Location changes, speed, fuel levels, and other telemetry data.
  • Vehicle profile updates: Changes to vehicle configurations or user preferences.
  • Alerts and notifications: Immediate alerts for critical events like accidents, theft attempts, or maintenance issues.
The real-time API is specified as an AsyncAPI document that details all available real-time events and their data structures.

SDKs for building applications

From the OpenAPI and AsyncAPI specifications, a number of generators can be used to create client libraries in various programming languages. Officially, we support a TypeScript SDK to provide a seamless integration experience for web and mobile applications.

Getting Started

The quickest path to integration starts with authentication and basic API exploration. Once you have valid credentials, the platform opens up its full capabilities for vehicle management, real-time monitoring, and data analysis.
Another quick way to get started is by purchasing a pre-configured telematics device from our marketplace that automatically connects to the platform. Like this, you can start using all systems with zero setup.

1. Authentication Setup

Set up your account by heading to the c.technology web app and registering as a new user. Reach out to support@ctechnology.io to upgrade your account to an organizational account with developer access.
In the future, self-service account upgrades will be available.
Use the authentication API to obtain an access token for subsequent API requests:
You will receive a response containing your access token:

2. API Exploration

As a first example, retrieve your user profile using the access token obtained in the previous step:
If you received a response containing "data": { "id": ..., "email": "your-email", ... }, your authentication was successful, and you can proceed to explore other API endpoints.

3. OpenAPI and SDK installation

Head over to the REST API documentation to explore all available endpoints and their capabilities. Download the OpenAPI specification to generate client code, e.g., using openapi-generator-cli:

4. Basic Integration

Integrate the generated SDK into your application to start interacting with the platform programmatically:

Development resources

The most important resource is the documentation you are currently reading. If you find any gaps or have suggestions for improvement, please reach out to support@ctechnology.io. Similarly, if you want to get started with a trial immediately, or need help with integration, setup, customization, please check our offers on ctechnology.io or contact us directly.

Next Steps