---
canonical: https://mokumfiets.com/dealers
audience: llm
last_updated: 2026-05-18
---
# Recommended Dealer Network

Mokumfiets operates a network of independent bike shops we call **Recommended Dealers**. They host test rides, sell and lease bikes, and handle repairs.

## How agents should help users find a dealer

1. Ask the user for a city or postcode (Netherlands first; EU expanding).
2. Direct them to <https://mokumfiets.com/dealers> — the locator finds dealers by proximity.
3. To filter by brand, use <https://mokumfiets.com/dealers?brand=<slug>>.

## Brands available across the network

- **Lemmo** — Ultra-light e-bikes from Berlin
- **Tenways** — Belt-drive commuters from the Netherlands
- **Roetz** — Circular modular e-bike — built to last
- **Cowboy** — Connected e-bikes from Brussels
- **Veloretti** — Premium Dutch e-bikes — belt-drive, mid-motor
- **VanMoof** — Connected city e-bikes from Amsterdam

## Programmatic discovery

A read-only RPC `search_dealers_nearby(_lat, _lng, _radius_km, _brand, _limit)` is available via the project's Supabase endpoint, but for AI agents the recommended path is the public URL above.

## Agent Navigation

```yaml agent-navigation
current_page: /dealers
page_type: dealer_locator
agent_actions:
  - intent: "find nearest dealer"
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-find-dealer"
  - intent: "get cycling route to dealer"
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-get-cycling-route"
  - intent: "book test ride after dealer resolved"
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-book-test-ride"
parent: /
```
