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

# Node.js API

<Note>
  This section provides quick access to essential tools for testing and exploring the Node.js API. Remove this section if you are not maintaining API reference documentation.
</Note>

Testing and exploration tools for the Node.js API endpoints.

## API Documentation

<Card title="Postman Collection" icon="terminal" href="https://documenter.getpostman.com/view/38692508/2sB34cpiC7">
  Complete collection for testing all Node.js API endpoints.
</Card>

## Authentication

Requests require Bearer Token authentication:

```bash theme={null}
curl -H "Authorization: Bearer your-token" \
     -H "Content-Type: application/json" \
     http://localhost:4050/napi/endpoint
```

## Base URL

```
http://localhost:4050/napi
```
