Skip to home
Zalt Logo

API Documentation

All data and resources are publicly available. No authentication required. Most endpoints return JSON, but some return XML, HTML, or other formats as indicated. All endpoints are cached for 1 hour. For the latest data, check the Cache-Control headers.

Public AccessNo AuthenticationMultiple Formats

API Endpoints

17 endpoints across 5 categories

Site Resources

19 resources across 4 categories

Usage Example

// Simple API helper function
async function fetchData(endpoint) {
  const response = await fetch(`https://zalt.me${endpoint}`);
  if (!response.ok) {
    throw new Error(`HTTP ${response.status}: ${response.statusText}`);
  }
  return response.json();
}

// Example: Fetch blog feed
const feed = await fetchData('/feed.json');
console.log('Latest posts:', feed.items);