Skip to main content

Keyco API Documentation

Welcome to the Keyco API documentation. This API enables you to integrate asset management capabilities into your existing systems, including ERP platforms (SAP, Oracle), financial tools (QuickBooks), and custom applications.

What is Keyco?

Keyco is a comprehensive asset management platform that helps organizations track, manage, and maintain their physical assets throughout their lifecycle. Each asset is represented as a "DUB" (Digital Unique Binder) and can be tagged using various technologies:

DUB TypeTechnologyUse Case
QR DUBsQR CodesGeneral asset tagging, low-cost deployment
Pro DUBsNFC TagsSecure authentication, tap-to-access
Active DUBsBLE BeaconsReal-time location tracking, proximity alerts
Virtual DUBsDigital-onlySoftware licenses, cloud resources, digital assets

API Capabilities

With the Keyco API, you can:

  • Manage Assets - Create, read, update, and search assets programmatically
  • Track Lifecycle Events - Monitor maintenance, transfers, and decommissioning
  • Access Analytics - Retrieve utilization rates, financial summaries, and trends
  • Organize with Groups - Manage asset collections and categories
  • Automate Workflows - Integrate with your existing business processes

Quick Example

# Fetch all assets in your organization
curl -X GET "https://api.qrdub.com/api/digital-dubs" \
-H "Authorization: Bearer kc_live_your_api_key_here"
{
"success": true,
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"assetTag": "LAPTOP-001",
"name": "MacBook Pro 16\"",
"status": "ACTIVE",
"dubType": "QR_DUB",
"purchaseCost": 2499.00,
"currentValue": 1875.00
}
],
"totalCount": 1
}

Getting Started

  1. Create an API Key - Generate credentials in your dashboard
  2. Make Your First Request - Follow our quickstart guide
  3. Explore the API Reference - Detailed endpoint documentation

Base URL

All API requests should be made to:

https://api.qrdub.com
info

The api.qrdub.com domain is used for all Keyco API endpoints as it provides a short, memorable URL. This same API serves all DUB types (QR, Pro, Active, and Virtual).

Support