DEVELOPMENT DOCUMENTATION
igloo
Get API Key
Docs / iglooworks / Quickstart

Quickstart

Get started with your iglooworks enterprise installation in 4 easy steps.

1. Retrieve your B2B API Key

API keys are issued via your iglooworks enterprise portal. Be sure to keep this safe and set it in your environment:

export IGLOOWORKS_API_KEY="ig_works_test_..."

2. List devices in your building

List all readers, locksets, and bridges currently associated with your zone:

curl https://api.iglooworks.co/v1/devices \
  -H "Authorization: Bearer $IGLOOWORKS_API_KEY"

3. Create an access preset

Set up time-bound offline PIN rules:

curl -X POST https://api.iglooworks.co/v1/devices/LK456/pins/hourly \
  -H "Authorization: Bearer $IGLOOWORKS_API_KEY" \
  -d '{"startDate": "2026-07-15T14:00:00", "endDate": "2026-07-15T18:00:00"}'