Skip to main content

BLAZE Partner API

Welcome to the BLAZE Partner API documentation. This API allows partners and developers to integrate with the BLAZE platform for dispensary management, point-of-sale, inventory tracking, and consumer-facing e-commerce.

What can you do with the Partner API?

  • Manage Transactions — Create, update, and complete sales transactions across queues
  • Member Management — Search, create, and update customer/member records with purchase limit tracking
  • Inventory & Products — Query product catalogs, manage categories, brands, and batch inventory
  • Consumer Cart — Build e-commerce flows with cart management, order submission, and payments
  • Loyalty & Promotions — Access loyalty programs, rewards, and manage promotional offers
  • Store Operations — Retrieve store configuration, terminals, tax settings, and employee info
  • Webhooks — Subscribe to real-time events for order updates and system notifications

Quick Start

  1. Get your credentials — You'll need a Partner Key and a Developer Key from BLAZE
  2. Authenticate — Include your keys in every API request (learn more)
  3. Make your first call — Try fetching store info with GET /api/v1/partner/store
curl -X GET "https://api.partners.blaze.me/api/v1/partner/store" \
-H "x-api-key: YOUR_PARTNER_KEY" \
-H "Authorization: YOUR_DEVELOPER_KEY"

Base URL

All API requests are made to:

https://api.partners.blaze.me

See Base URL & Environments for more details.

Next Steps