Skip to main content

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.

AI crawlers, agents, and automated tools are explicitly welcome: robots.txt allows GPTBot, ClaudeBot, Claude-User, Claude-SearchBot, Google-Extended, PerplexityBot, and 25+ other bots to fetch every endpoint below with no restrictions.

Public AccessNo AuthenticationMultiple FormatsAI Crawlers Welcome

API Endpoints

19 endpoints across 5 categories

Site Resources

23 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);