DEVELOPMENT DOCUMENTATION
igloo
Get API Key
Docs / igloohome / Quickstart

Quickstart

Get started with your igloohome smart lock integration in 3 easy steps.

1. Retrieve your API Key

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

export IGLOOHOME_API_KEY="ig_home_test_..."

2. Make your first request

List all locks currently associated with your account:

curl https://api.igloohome.co/v1/locks \
  -H "Authorization: Bearer $IGLOOHOME_API_KEY"

3. Create a residential PIN

curl -X POST https://api.igloohome.co/v1/locks/LK123/pins \
  -H "Authorization: Bearer $IGLOOHOME_API_KEY" \
  -d '{"duration_hours": 24}'