Skip to content

Network API

The Network API is the low-level platform API — it gives you direct access to devices, networks, hotspots, and integrations. The Blecon Console is built entirely on this API, so anything you can do in the Console can be automated programmatically.

Most users build on the Tracker API, which provides the full tracking application layer: assets, zones, rules, alerts, and position history. Use the Network API when you need to manage infrastructure directly — registering devices at scale, configuring data routing, or building a custom application without the Track layer.

Base URL

https://api.blecon.net/v1

All endpoints are scoped to an account:

/v1/accounts/{account_id}/...

Authentication

Authenticate using an API key. Include the key in the Authorization header of every request:

Authorization: APIKEY::<your-secret-key>

See API keys for how to create and manage keys.

API reference

The full interactive API reference is available at api.blecon.net/docs. It covers all endpoints with request/response schemas and lets you try calls directly.

Key resource groups:

  • Networks — Create, list, update, and delete networks. Configure positioning settings and data routing per network.
  • Devices — Register, list, update, and delete devices. Query device status and last-seen data.
  • Hotspots — List hotspots, view status and location, manage fixed and mobile hotspot configuration.
  • Data routing — Create and manage routes that deliver device events to webhooks, AWS S3, SQS, EventBridge, and other destinations.
  • Integrations — Configure third-party connectors (Juniper Mist, Datacake, Memfault, and others).
  • Accounts — Manage account members, roles, and settings.
  • API keys — Create and rotate API keys programmatically.

What you can build

  • Automated provisioning — Register and configure devices at scale without manual Console steps.
  • Custom integrations — Route device events to any destination your stack supports.
  • Operations tooling — Query device and hotspot status, last-seen data, and network health from your own dashboards.
  • Multi-network management — Manage multiple networks across sites or customers from a single script.

Network API vs Tracker API

Network API Tracker API
Docs api.blecon.net/docs api.blecon.net/tracker/docs
Base path /v1/accounts/{id}/... /tracker/api/workspaces/{id}/...
Scope Networks, devices, hotspots, integrations Assets, zones, rules, alerts
Purpose Device management and data routing Tracking application features

Both APIs use the same authentication. A Blecon Track workspace is linked to a Blecon Network account.


Questions? Contact Blecon support — we're happy to help.