Skip to main content

Overview

The Nautilus API allows authorized external systems to interact with the Nautilus platform programmatically.

Base URL

https://app.nautilus.co/api

Authentication

All endpoints require a Bearer token passed in the Authorization header.
curl -X POST https://app.nautilus.co/api/v1/message \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"to": "+15551234567", "body": "Hello from Nautilus!"}'
Requests with a missing or invalid token receive a 401 Unauthorized response.