# API Reference

> Complete list of all public ZopNight API endpoints with request/response documentation, grouped by domain.

Source: https://zop.dev/developer-docs/reference/api-reference

---

Complete list of all public API endpoints. Click any endpoint to view detailed documentation
with request/response examples.

**Base URL:** `https://zopnight.com/api`

{(() => {
  const sections = [];
  let current = null;
  for (const ep of endpoints) {
    if (ep.section) {
      current = { name: ep.section, items: [] };
      sections.push(current);
    }
    if (current) current.items.push(ep);
  }
  return sections.map((sec) => (
    <div key={sec.name}>
      <h2>{sec.name}</h2>
      {sec.items.map((ep, i) => (

      ))}
    </div>
  ));
})()}
