Skip to main content

Project Details API

Project Details With One Call

Discover the depth of project insights with our Project Details API, offering a wealth of information encapsulated in diverse charts and metrics. From yearly trends and transaction heatmaps to volume analysis, ratings, overall progress, and satellite data, this feature provides a holistic view of project dynamics. Users can seamlessly explore credit production, milestones, and other key metrics in an interactive and visually engaging manner. The dedicated Project Details page offers a comprehensive breakdown, allowing users to delve deeper into each facet, analyze trends over time, and gain a nuanced understanding of the project's multifaceted performance. Embrace the power of data visualization as you navigate through charts that paint a vivid picture of sustainability milestones, empowering users to make informed decisions and actively contribute to our shared environmental goals. Visit the Project Details page for an in-depth exploration of the intricacies that define our commitment to sustainable progress.

Atmos' Satellite Experience

warning

You won't be able to fetch any data without an API key. Generate one here.

Make your request

JavaScript

const apiEndpoint = 'https://data.tryatmos.com/atmos/get_project_details/?project_id=VCS2338';

// Fetch request
fetch(apiEndpoint, {
method: 'GET', // or 'POST', 'PUT', etc.
const headers = {
"x-api-key": "<your api key>",
"Content-Type": "application/json",
};
// You can include a request body for methods like POST or PUT
// body: JSON.stringify({ key: 'value' }),
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
return response.json();
})
.then(data => {
// Handle the response data
console.log(data);
})
.catch(error => {
// Handle errors
console.error('Error:', error);
});