> ## Documentation Index
> Fetch the complete documentation index at: https://docs.velora.crickdevs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Endpoint reference

> Velora public API endpoint catalog sourced from the app API documentation model.

export function VeloraApiSection() {
  return <div>
      {sections.map(section => <section key={section.title}>
          <h2>{section.title}</h2>
          <p>{section.description}</p>

          <table>
            <thead>
              <tr>
                <th>Method</th>
                <th>Path</th>
                <th>Description</th>
                <th>Query</th>
              </tr>
            </thead>
            <tbody>
              {section.items.map(item => <tr key={`${item.method}-${item.path}`}>
                  <td><code>{item.method}</code></td>
                  <td><code>{item.path}</code></td>
                  <td>{item.description}</td>
                  <td>{item.query ? <code>{item.query}</code> : '-'}</td>
                </tr>)}
            </tbody>
          </table>

          {section.example ? <div>
              <p><strong>Example</strong></p>
              <pre>
                <code>{section.example}</code>
              </pre>
            </div> : null}
        </section>)}

      <section>
        <h2>Operational notes</h2>
        <ul>
          {notes.map(note => <li key={note}>{note}</li>)}
        </ul>
      </section>
    </div>;
}

This endpoint catalog mirrors the sections used in the Velora app API page.

<VeloraApiSection />
