flespi
Platform
Telematics HubRaw data ingestion
Raw data ingestion
Data transformation
Data transformation
Real-time analytics & events
Real-time analytics & events
Video
Video
Downstream integrations
Downstream integrations
Device management
Device management
Diagnostics & Troubleshooting
Diagnostics & Troubleshooting
Automation
Automation
Tacho
Tacho
ReferenceREST API
REST API
Use cases
Use cases
Technologies
Technologies
Tools
Tools
MQTTMQTT broker
MQTT broker
MQTT Tiles
MQTT Tiles
MQTT Board
MQTT Board
MQTT API
MQTT API
About usAbout us Online chatOnline chat Platform statusPlatform status
Hardware
Supported equipmentProtocols
Protocols
Devices
Devices
Manufacturers
Manufacturers
SelectionsAPI-based integrations
API-based integrations
IoT for sharing platforms
IoT for sharing platforms
Video telematics hardware
Video telematics hardware
Tacho hardware
Tacho hardware
GuidesHow to connect my device?
How to connect my device?
Hardware diagnostics
Hardware diagnostics
Terms of new hardware integration
Terms of new hardware integration
Knowledge Base
Pricing
Blog
Forum
Results found: 644
All (644) Blog (140) KB (93) Pages (44) Protocols (133) Devices (207) Manufacturers (27)
Blog
flespi storage system: one-of-a-kind telematics database engine
It took us two weeks of intense work to design and release flespi storage component API - the fastest IoT cloud database development seen to date.
https://flespi.com/blog/flespi-storage-system-one-of-a-kind-telematics-database-engine
Blog
flespi database system
Data storage system is one of the critical elements for any platform. As in the case with most of flespi components we developed own database management system
https://flespi.com/blog/flespi-database-system
Blog
Case in point to IoT hardware companies: In 2020 and beyond — no API equals lost opportunities
Affordable API to access telematics data from versatile GPS trackers effortlessly.
https://flespi.com/blog/no-api-equals-lost-opportunities
Blog
API for asset tracking: valuable data in the right place
How universal REST API facilitates integrations, gives flexibility, and speeds up the development of asset management solutions.
https://flespi.com/blog/asset-tracking-api
KB
Regions — geographically distributed flespi datacenters
The location for all data in your flespi account.
https://flespi.com/kb/regions-geographically-distributed-flespi-datacenters
Pages
API Box
API Box Test all available REST API methods, generate curl requests, preview affected items, learn about deprecated methods, and more. More details and screenshots in a dedicated article. Start exploring the flespi REST API now. Run flespi.io/docs/ Interactive Just a few mouse clicks to form the request and you see the result in an instant. Personalized Tied to your flespi account via token, API Box allows to directly communicate with all the items in your account. Caring For potentially risky requests (PUT, POST, DELETE) that can accidentally cause "harm" API Box allows to preview the list of affected items to make sure nothing unwanted happens. Neat The new interface and usability are well thought-out to make your experience highly productive. Testing REST API with pleasure Pick the flespi entity to manage, select the proper API request, configure it, and view the result. Create new items, configure the necessary fields, copy the JSON schema, get the curl, etc. Start exploring the flespi REST API with flespi.io/docs/.
https://flespi.com/tools/apibox
Pages
REST API
REST API API to perform any operation with the flespi platform. Open API Box to delve into the API docs now. Also check our MQTT API. Flespi is a backend platform that is destined to sit under the hood of your beautiful solution. Therefore, most of the time, flespi is in itself the API. ALL operations with the flespi platform can be performed via the REST API and signed with the authorization token. Request structure curl -X [GET|POST|PUT|DELETE] --header ’Authorization: FlespiToken XXXXXX’ -d ‘[{"name":"new-name","parameter":"value"}]’ ‘https://flespi.io/resource-location-URL’ Learn how to obtain authorization token in our KB. Example 1: get the list of all registered devices curl -X get --header 'Authorization: XXXXXX' 'https://flespi.io/gw/devices/all' Example 2: create new ‘teltonika’ channel curl -X post --header 'Authorization: FlespiToken XXXXXX' -d '[{"name":"new-channel-name","protocol_name":"teltonika"}]' 'https://flespi.io/gw/channels' Example 3: delete a flespi device with specific id curl -X delete --header 'Authorization: FlespiToken XXXXXX' 'https://flespi.io/gw/devices/123456 Example 4: get latest digital inputs and position information for multiple devices selected by id curl -X get --header 'Authorization: XXXXXX' 'https://flespi.io/gw/devices/1,2,3,4,5/telemetry/position,din' Available APIs Platform API To manage your account data and authorization tokens. Gateway API To create and manage the instances of the telematics hub that jointly provide the end-to-end communication between the GPS trackers and your target application (you will need this one most of the time). Storage API To set up and manage low-level storage elements that can be used inside any telematics system. MQTT broker API To operate flespi MQTT broker via REST API. API Box is the latest version of the flespi REST API documentation perfect for finding the proper request methods, interactive testing, learning about deprecated methods, and a lot more (check the detailed API Box guide here). Interesting fact All the user-friendly tools you use to manage your flespi account — flespi panel, Toolbox, TrackIt, HelpBox, etc. — are just neatly developed customer-facing interfaces wrapped around the API. Basically, these are the living examples of applications developed on top of the flespi API;) Permissions You can use ACL tokens to grant access to the specific parts of the platform: Request limits Limits on the number of REST API calls in Free and Commercial accounts are outlined here. Want to know more about API Box functionality? Tell me more
https://flespi.com/rest-api
KB
How to add location data based on Wi-Fi router MAC address into the message?
Using plugins to resolve information about Wi-Fi nodes into location data with the help of Google Wi-Fi Geolocation API.
https://flespi.com/kb/google-wifi-geolocation-plugin
Pages
Raw data ingestion
Raw data ingestion Get telemetry data from GPS trackers, IoT devices, and platforms normalized into JSON. Create your first channel with flespi 130+ protocols Connect any of the 1000+ supported device models. 10+ platforms Inject telemetry data from third-party solutions (Webfleet, Invers, General Motors OnStar, and more). High-precision parsing engine We closely work with GPS tracker manufacturers and use our powerful proprietary protocol description language to leave no byte unparsed. Output in JSON Get clearly structured parametrized messages easy to handle in any downstream platform. Standardized parameter names We unify the naming of the most common datapoints across protocols to make consumption handier. more about channels in our kb Channels API CREATE A FREE ACCOUNT AND TRY Getting your data in flespi 1. Log in with the flespi panel. 2. Go to Telematics hub in the left-side menu -> Channels -> click “+”. 3. Pick the proper protocol depending on the hardware manufacturer; give it a name, and click Save. 4. Point your GPS tracker to the channel’s domain name:port. 5. Check the Toolbox tab for logs and messages. In case of any issues, check our troubleshooting checklist Watch how to create a channel Possible usage scenarios Stream the entire channels to target platforms. Aggregate data by device. Plug in a script. Create your first channel with flespi Login/register Related articles Read more news
https://flespi.com/raw-data-ingestion
KB
How to sort and filter REST API call response
UI options to control the order of items received via REST API
https://flespi.com/kb/how-to-sort-and-filter-rest-api-call-response
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • »
  • Platform
  • Telematics hub
  • Device management
  • Real-time analytics
  • MQTT broker
  • Storage
  • Resources
  • Blog
  • Knowledge base
  • Forum
  • API
  • Protocols
  • Pricing
  • Public contract
  • Privacy policy
  • Support
  • About us
  • Partners
Be the first to know the news
info@flespi.com

‹ › ×