Hardware tracking

Point your GPS tracker at D' Recyclers Exchange

Every load can be followed by two independent streams: the tracker fitted to the vehicle, container or craft, and the driver's phone. This page shows which devices work and the exact settings to type into them. Buyers and sellers on the deal see the live position, zone alerts and stop alerts without the operator touching anything.

Server settings

These are the only values a tracker needs. The device ID and token come from the deal's live tracking panel when you register the device.

Server address (URL)
https://drecyclers.com/api/public/tracking/vehicle
Host
drecyclers.com
Port
443 (HTTPS) — use 80 only if the tracker cannot do HTTPS
Protocol
OsmAnd / HTTP (GET or POST). Traccar JSON and plain JSON also accepted.
Test ping (paste in a browser, replace the two values)
https://drecyclers.com/api/public/tracking/vehicle?id=YOUR_DEVICE_ID&token=YOUR_DEVICE_TOKEN&lat=6.5244&lon=3.3792&timestamp=1790439738&speed=0

A successful ping replies with ok: true and the number of positions stored. If it replies "Unknown device or wrong token", re-check the ID and token.

Hardwired & OBD truck trackers

Fitted to the tipper, flatbed or tanker. They run off the vehicle battery, so they keep reporting even when the driver's phone is off.

  • · Teltonika FMB920, FMB003, FMC130, FMC650
  • · Concox / Jimi IoT GT06N, JM-VL01, GT300
  • · SinoTrack ST-901, ST-903, ST-906
  • · Coban GPS103-A/B, GPS303, TK103
  • · Queclink GV55, GV75W, GV300W
  • · Meitrack MVT340, T366, T622
  • · Ruptela FM-Eco4, FM-Pro4
Container, trailer & asset trackers

Magnetic or bolt-on units with their own battery, for sea containers, barges, rail wagons and unpowered trailers.

  • · Teltonika FMB204, TAT100, TAT140
  • · Concox AT4, WeTrack2
  • · Queclink GL300, GL501
  • · Any tracker that can post to a custom server URL
Phone apps (driver tracking)

Free apps that turn the driver's phone into a second tracker. They buffer positions offline and upload them when signal returns.

  • · Traccar Client (Android and iOS)
  • · OsmAnd with the online tracking option
  • · The built-in driver dispatch link on this platform (no install needed)
Fleet platforms & custom hardware

Already running a fleet system? Forward positions to us instead of re-fitting hardware.

  • · Traccar server (HTTP event forwarding)
  • · Wialon, Flespi, GPS-Trace and similar platforms with webhook output
  • · Custom SIM7600 / Quectel / ESP32 units posting JSON
Five steps to go live
  1. Open the deal, scroll to Live Tracking and register the device. You get a device ID and a one-time token.
  2. Put a data SIM in the tracker and set its APN (your network gives you the APN name, user and password).
  3. Set the server address above in the tracker, by SMS command or in the maker's configurator app.
  4. Send the test ping. The device shows a Live badge in the panel within a minute.
  5. Draw the pickup yard and delivery plant zones on the deal, then start the trip leg.
SMS commands for common trackers

Send these from a phone to the tracker's SIM number. Replace the placeholders. Default passwords are usually 0000 or 123456 — check the device manual.

SinoTrack ST-901 / ST-906 — set APN then server
APN123456 your.apn.name# 804SERVER,1,drecyclers.com,443,0#
Coban GPS103 / TK103 — set APN then server
apn123456 your.apn.name adminip123456 drecyclers.com 443
Concox / Jimi GT06N — set server
SERVER,1,drecyclers.com,443,0#
Teltonika (configurator: GPRS settings)
Domain: drecyclers.com · Port: 443 · Protocol: HTTP · Path: /api/public/tracking/vehicle
Traccar Client app (Settings)
Server URL: https://drecyclers.com/api/public/tracking/vehicle?token=YOUR_DEVICE_TOKEN · Device identifier: YOUR_DEVICE_ID · Frequency: 30s
Sending positions from your own system

Fleet platforms and custom units can post a batch of positions, including ones recorded while the unit was out of signal. Send the token in the X-Device-Token header.

POST https://drecyclers.com/api/public/tracking/vehicle
Content-Type: application/json
X-Device-Token: YOUR_DEVICE_TOKEN

{
  "device_id": "YOUR_DEVICE_ID",
  "positions": [
    { "lat": 6.5244, "lng": 3.3792, "recorded_at": "2026-01-20T08:15:00Z", "speed_kmh": 42, "heading": 118 }
  ]
}