Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.wcr.is/llms.txt

Use this file to discover all available pages before exploring further.

The WeCareRemote REST API provides programmatic access to the platform’s core features — the AI assistant, JWT authentication, and meeting recordings. All requests use standard HTTP and return JSON. Whether you are building an integration, automating workflows, or accessing meeting data, the API gives you direct access to the platform.

Base URLs

Each service in the WeCareRemote platform has its own base URL.
ServiceBase URL
AI Agent APIProvided by your WeCareRemote administrator
Auth APIhttps://getme.global/api/v1/wordpress_auth
Your WeCareRemote administrator will provide the base URL for the AI agent API. The authentication API is always available at https://getme.global/api/v1/wordpress_auth.

Authentication

All requests to the AI agent API require a Bearer token in the Authorization header. You obtain this token by logging in through the WeCareRemote web interface or by calling the JWT token endpoint.
Authorization: Bearer <your-token>
See the Authentication guide for full details on obtaining and using tokens.

Request format

All request bodies must be JSON. Set the Content-Type header on every request that includes a body.
Content-Type: application/json

Response format

All responses are JSON. Successful responses include a data payload. Error responses include an error message describing what went wrong.

HTTP status codes

CodeMeaning
200 OKRequest succeeded.
400 Bad RequestThe request was malformed or missing required fields.
401 UnauthorizedThe Bearer token is missing, expired, or invalid.
422 Unprocessable EntityThe request body failed validation.
500 Internal Server ErrorAn unexpected error occurred on the server.

Example request

The following examples show a basic message sent to the AI agent endpoint.
curl -X POST http://localhost:8080/ \
  -H "Authorization: Bearer your-token" \
  -H "Content-Type: application/json" \
  -d '{"message": "Hello, how can I get help?"}'

Explore the API

AI agent

Send messages to the AI assistant and receive responses, with optional conversation history.

Authentication

Obtain and verify JWT tokens for WeCareRemote users.

Authentication guide

Learn how to pass Bearer tokens in your API requests.

Meeting recordings

List and download meeting recordings stored in cloud storage.