API Access

Get API Access

We're in the early stages of offering API access. Stay tuned for updates!

Our API provides programmatic access to KBOB Ă–kobilanzdaten im Baubereich, allowing you to integrate sustainable building material data directly into your applications. While we are still finalizing our access plans, we encourage you to reach out for more information and to express your interest.

API Documentation & Playground

Explore and test our API endpoints

#
Min: 1Max: 10

Number of random materials to return (1-10)

const baseUrl = "https://lcadata.ch"; 

fetch('${baseUrl}/api/kbob/materials/random', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));