Skip to content
AtlasBrokers
FeaturesPricingToolsFind BrokersQ&ADocs
Log inGet Started

Ready to modernize your brokerage?

Join brokerages across Canada using AtlasBrokers to close more deals.

Get started free
AtlasBrokers

The modern platform for insurance brokers in Canada.

Product

  • Features
  • Pricing
  • Docs
  • Developers
  • Changelog

Resources

  • Find Brokers
  • Compare Brokers
  • Q&A
  • Glossary
  • Calculators

Company

  • About
  • Blog
  • Careers
  • Security
  • Status

Legal

  • Privacy Policy
  • Terms of Service
  • Compliance
  • Data Processing
  • Privacy Assessment

© 2026 AtlasBrokers Inc. All rights reserved.

Privacy PolicyTerms of Service
Back to blogProduct Update

Introducing the AtlasBrokers Developer API

Mar 2, 20266 min read

We're opening up AtlasBrokers to developers. Our new REST API lets you build custom integrations, embed broker data in your applications, and automate workflows.

What You Can Do

Search Brokers Query our database of brokers by location, specialty, rating, and more. Perfect for building custom directories or recommendation engines.

Access Reviews Pull review data for any broker profile. Build custom review displays, aggregate sentiment analysis, or feed data into your own models.

Manage Contacts Create, update, and query contacts in your workspace. Sync data between AtlasBrokers and your existing systems.

Trigger Workflows Use webhooks to react to events in real time — new lead, deal closed, task completed, and more.

Getting Started

  1. Generate an API key in Settings → API & Integrations
  2. Read the docs at [/docs/api](/docs/api) for endpoint reference
  3. Make your first request — all you need is a curl command or any HTTP client

Authentication

All requests require an API key passed in the X-API-Key header:

curl -H "X-API-Key: your_key_here" \
  https://atlasbrokers.ca/api/v1/brokers?city=Toronto

Rate Limits

  • Free tier: 100 requests/hour
  • Professional: 1,000 requests/hour
  • Enterprise: 10,000 requests/hour with dedicated support

Webhooks

Subscribe to events and receive POST requests to your endpoint:

  • `lead.created` — New lead submitted
  • `deal.stage_changed` — Deal moved in pipeline
  • `contact.updated` — Contact information changed
  • `task.completed` — Task marked as done

Full webhook documentation is available at /docs/webhooks.

We can't wait to see what you build. Get your API key today.

Back to all posts