Ibag FOX PRO

Ibag FOX PRO is a compact anti-theft vehicle GPS tracker. The device features a 1400 mAh Li-Pol battery, geofencing, multiple alarms, and more.

Usage specifics
Parameters (54)
Commands (2)
Ibag FOX PRO
Flespi parses telemetry data from your Ibag FOX PRO into a standardized JSON and lets you send commands to Ibag FOX PRO via API.

Here’s the like of JSON you get

{
    "ident": "352625333222111",
    "position.altitude": 273.61,
    "position.hdop": 0.7,
    "position.latitude": 49.069782,
    "position.longitude": 28.632826,
    "position.satellites": 18,
    "server.timestamp": 1650636570.426424,
    "timestamp": 1650636570.426424,
    "device.type.id": "Ibag FOX PRO",
    "channel.id": 1111,
    "protocol.id": "ibag"
    "engine.ignition.status": true
    ...
}

How to consume this nice JSON

The easiest way is to make a REST API request like this
curl -X GET  --header 'Authorization: FlespiToken XXX' 'https://flespi.io/gw/devices/<device id>/messages'

How to send commands to Ibag FOX PRO?

You can send a specific command. Show all commands

You can also

Modify messages

Add or remove parameters, inject data from LBS and reverse-geocoding services, etc.
Learn what plugins can do

Aggregate data

Determine trips and stops, catch events, detect geofence ins/outs, and more.
Learn about flespi analytics capabilities
absolute.acceleration
number
g
Module of accelerometer vector
absolute.deceleration
number
g
Module of deceleration value from accelerometer
ain
number
volts
Voltage on the analog input
alarm.event
boolean
Alarm event triggered
battery.level
number
percentage
Internal battery level
battery.voltage
number
volts
Internal battery voltage
can.axle.weight
number
kg
Weight on the axle read from CAN
can.engine.coolant.temperature
number
celsius
Engine coolant temperature read from CAN
can.engine.temperature
number
celsius
Engine temperature read from CAN
can.fuel.volume
number
liters
CAN fuel volume
channel.id
number
ID of channel that received a message
device.id
number
ID of device that received a message
device.name
string
Name of device that received a message
device.type.id
number
ID of device type of device that received a message
din
number
Digital inputs bitmask
dout
number
Digital outputs bitmask
driver.message
string
Driver text message content
engine.ignition.status
boolean
Engine ignition or ACC status
engine.motorhours
number
hours
Total calculated engine motorhours
engine.oil.pressure
number
Engine oil pressure
engine.rpm
number
rpm
Engine RPM read
external.powersource.voltage
number
volts
External power voltage
fuel.consumed
number
liters
Fuel volume totally consumed by vehicle
fuel.level
number
percentage
Fuel level percentage
fuel.volume
number
liters
Fuel volume
gsm.cellid
number
Mobile network (GSM, 3G, 4G, LTE, 5G, ...) base station ID
gsm.lac
number
Mobile network (GSM, 3G, 4G, LTE, 5G, ...) location area code
gsm.mcc
number
Mobile network (GSM, 3G, 4G, LTE, 5G, ...) country code
gsm.mnc
number
Mobile network (GSM, 3G, 4G, LTE, 5G, ...) code
gsm.network.roaming.status
boolean
Mobile network (GSM, 3G, 4G, LTE, 5G, ...) in roaming mode
gsm.signal.level
number
percentage
Mobile network (GSM, 3G, 4G, LTE, 5G, ...) signal strength level
ibutton.code
string
Hexadecimal code of connected iButton
ident
string
Device unique identifier like serial number, IMEI, etc
media
boolean
Message contain media file
media.image
object
Image file in media storage
peer
string
IP:port from which device connecting to the channel
position.altitude
number
meters
Altitude value for position
position.direction
number
degrees
Heading angle at position detection moment
position.hdop
number
Horizontal dilution of precision
position.latitude
number
degrees
Latitude coordinate value
position.longitude
number
degrees
Longitude coordinate value
position.satellites
number
Quantity of satellites used to calculate coordinates for given position information
position.speed
number
km/h
Instant speed at position detection moment
protocol.id
number
ID of protocol
protocol.version
string
Protocol version string
server.timestamp
number
seconds
Timestamp when server received a message
software.version
string
Software version string
tacho.position.speed
number
km/h
Instant speed reported by tacho
timestamp
number
seconds
Message timestamp
touch.memory.id
number
Touch Memory Key ID
vehicle.mileage
number
km
Total calculated mileage
x.acceleration
number
g
Accelerometer value X
y.acceleration
number
g
Accelerometer value Y
z.acceleration
number
g
Accelerometer value Z
Properties
Custom message command
custom
The command is used to send custom messages to the device. It allows to implement additional features necessary for the controller. is added automatically
message: Text of the message
Send custom message command
{"message":"Text of the message"}
Text message
text_msg
Send text message to device
message: Text message content
Send text message
{"message":"this is message text"}