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.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.
Base URLs
Each service in the WeCareRemote platform has its own base URL.| Service | Base URL |
|---|---|
| AI Agent API | Provided by your WeCareRemote administrator |
| Auth API | https://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 theAuthorization header. You obtain this token by logging in through the WeCareRemote web interface or by calling the JWT token endpoint.
Request format
All request bodies must be JSON. Set theContent-Type header on every request that includes a body.
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
| Code | Meaning |
|---|---|
200 OK | Request succeeded. |
400 Bad Request | The request was malformed or missing required fields. |
401 Unauthorized | The Bearer token is missing, expired, or invalid. |
422 Unprocessable Entity | The request body failed validation. |
500 Internal Server Error | An unexpected error occurred on the server. |
Example request
The following examples show a basic message sent to the AI agent endpoint.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.