API
Workflow execution
- Read slices with
GET /api/nina/v1/slices. - Run slices through
POST /api/nina/v1/slices/:slice/run. - Every Nina API call requires the signed-in Google session cookie.
Private developer surface
Nina exposes a small authenticated surface for slice discovery, workflow execution, social connections, and future MCP tooling. Public credentials are never issued from the browser.
API
GET /api/nina/v1/slices.POST /api/nina/v1/slices/:slice/run.MCP
SDK
credentials: include.Quick start
const response = await fetch('/api/nina/v1/slices', {
credentials: 'include',
cache: 'no-store',
});
if (response.status === 401) {
throw new Error('Nina access requires an approved Google session.');
}
const { slices } = await response.json();Reference
Public discovery
These pages describe Nina for search engines, AI discovery, and technical reviewers without exposing the private console or provider secrets.