Developers
AssetBlaze is built to integrate seamlessly with your systems. Whether you're syncing data, extending workflows, or building entirely new experiences on top of your asset inventory, our developer platform gives you full programmatic access to your organization's data and events.
REST API
Our REST API gives you access to all key AssetBlaze resources, including:
- Items
- Categories
- Custom Fields
- Locations
- Workspaces
- Tags
Authentication
Access is secured via API keys, which you can generate and manage in the AssetBlaze dashboard.
Key Expiry: API keys can be time-limited.
Scoped Access: Keys can be restricted to specific resources or actions based on role/permissions.
📘 Example
GET /api/v1/items/:id
Authorization: Bearer YOUR_API_KEY
Real-Time Event Webhooks
All changes in your organization — from item creation to custom field updates — emit structured events via webhooks.
You can subscribe to receive notifications for any of the following lifecycle events:
item.created
item.updated
item.deleted
location.created
- ...and many more
Secured & Reliable
- Delivered via HTTPS with HMAC signatures
- Retry with exponential backoff on failures
- Replay support through the dashboard
📘 Payload Example
{
"object": "event",
"type": "item.created",
"timestamp": 1742569495658,
"data": {
"object": "item",
"id": "item_67dd8104a6b1d53d0514f4eb",
"name": "Air Fryer X",
"description": "A battle-tested air fryer",
"asset_id": "8",
"price": 12900,
"cost": 8700,
"quantity": 100,
"category": {
"id": "cat_67b8df317ccd128bc82c6f7d",
"name": "Kitchen appliances"
},
...
}
}
Use Cases
- Sync to external asset systems
- Trigger workflows in tools like Zapier or n8n
- Connect to ERP or procurement systems
- Build custom dashboards and reporting layers
Need Help?
We’re here for your integration journey. Reach out to our team or check out our documentation.
💡 Want early access to more advanced dev tools like GraphQL or bulk import APIs? Let us know!