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

20 endpoints across 5 categories

Site Data

9 endpoints

Services

Detailed information about available services. Includes process phases, duration, and deliverables.

/data/services.json
/ar/data/services.json

About

Professional information, experience, education, skills, and contact details.

/data/about.json
/ar/data/about.json

Projects

Complete portfolio of all projects including open-source work, client projects, and personal projects.

/data/projects.json
/ar/data/projects.json

Testimonials

Client testimonials and reviews including ratings, service labels, and detailed feedback from various services.

/data/testimonials.json
/ar/data/testimonials.json

Contact

Contact information including email, phone, WhatsApp, scheduling links and location details.

/data/contact.json
/ar/data/contact.json

Guides

Every book under /guides with its parts and chapters. Chapter content is included only for published, free chapters - paid or unpublished ones are listed by title/slug only.

/data/guides.json
/ar/data/guides.json

Free AI Tools

List of all free AI tools available on the site, including features, ratings, and FAQs.

/data/tools.json
/ar/data/tools.json

Expertise Topics

All expertise topic pages with full body content (intro, sections, FAQs), SEO metadata, and a link to the related paid service.

/data/expertise.json
/ar/data/expertise.json

Social Proof Stats

Aggregated statistics from GitHub, Stack Overflow, and Docker Hub including stars, followers, and more.

/data/social-proof-stats.json
/ar/data/social-proof-stats.json

Site Resources

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