Open Infrastructure Streams

ALA PUKA believes that public road diagnostic data generated by the public should be owned by the public. We publish all anonymized telemetry payloads directly to a public registry for research and planning.

Anonymized, Encrypted, and Decentralized.

We employ edge anonymization on each volunteer device to remove route starts and destinations before submission, keeping all data fully private.

The collected payloads contain anonymous vibration events (G-force metrics recorded at 100Hz from internal mobile accelerometers) paired with scrambled, unconnected GPS coordinates. Researchers can download these blocks to analyze road wear, model infrastructure degradation, and prioritize repairs.

Data Privacy FAQ

Query the Public Data Repository

Access latest verified telemetry blocks using permissionless API endpoints. Our backend publishes datasets directly to IPFS.

The API returns JSON structures outlining vibration magnitudes, geofenced boundaries, and timestamp coordinates. Below is a sample query to retrieve the latest block.

curl -X GET "https://api.ala-puka.org/v1/blocks/latest" \
  -H "accept: application/json"

Sample Data Payload

{
  "block_index": 12894,
  "timestamp": "2026-07-05T07:20:00Z",
  "spatial_geofence": {
    "region": "puna-district",
    "coordinates": [
      {"lat": 19.524, "lng": -154.912},
      {"lat": 19.531, "lng": -154.908}
    ]
  },
  "telemetry": {
    "z_axis_amplitude_g": 3.42,
    "velocity_kmh": 48.5,
    "vibration_frequency_hz": 94.2
  },
  "contributor_signature": "0x5A3f...2E"
}