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

# API Reference

> Integrate Navigara programmatically using the REST API.

<Info>Full API reference documentation coming soon.</Info>

## Overview

Navigara exposes a REST API (via gRPC-HTTP gateway) for programmatic access to all platform features.

## Authentication

All API endpoints require authentication via Bearer token or API key.

```bash theme={null}
# Session token
curl -H "Authorization: Bearer <session-token>" \
  https://app.navigara.com/api/v1/organizations

# API key
curl -H "Authorization: Bearer navigara_<api-key>" \
  https://app.navigara.com/api/v1/organizations
```

## Base URL

```
https://app.navigara.com/api/v1
```
