> ## Documentation Index
> Fetch the complete documentation index at: https://docs.luxxon.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Unmet-demand heatmap

> Last 30 days of session requests, aggregated by ~5km cells. Returns cell centroid + request count + unmet count + avg max price. Anonymised — no wallets or workspace ids.



## OpenAPI

````yaml /openapi.json get /api/v1/demand
openapi: 3.0.0
info:
  title: Luxxon API
  description: Programmable vision — on-demand live video feeds
  version: 0.1.0
  contact: {}
servers:
  - url: https://api.luxxon.dev/api/v1
security: []
tags:
  - name: Authentication
    description: SIWE wallet sign-in. Used by the dashboard; API-key callers skip this.
  - name: Me
    description: Identity self-introspection — wallet or API key.
  - name: Workspaces
    description: Tenant root. Coverage area, availability, members.
  - name: API keys
    description: Per-workspace scoped credentials (lxxn_*).
  - name: Pricing
    description: Live rate + optional pre-quoted rate lock.
  - name: Sessions
    description: 'Visual session lifecycle: request → dispatch → authorize → start → end.'
  - name: Wallet
    description: On-chain wallet state and event log for a workspace.
  - name: Settlements
    description: On-chain settlement view per session.
  - name: Health
    description: Proof-of-life. No auth.
  - name: Webhooks
    description: Inbound video events from Cloudflare Stream. Internal.
paths:
  /api/v1/demand:
    get:
      tags:
        - Coverage
      summary: Unmet-demand heatmap
      description: >-
        Last 30 days of session requests, aggregated by ~5km cells. Returns cell
        centroid + request count + unmet count + avg max price. Anonymised — no
        wallets or workspace ids.
      operationId: LxDemandController_heatmap
      parameters: []
      responses:
        '200':
          description: ''

````