The Nexudus Members Portal is a front-end only application that connects to the Nexudus API backend. This API provides comprehensive access to all the functionality available in the portal interface, enabling developers to integrate portal features into custom applications, mobile apps, or third-party systems.Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
This portal application does not have its own backend - it connects directly to the Nexudus API infrastructure for all data operations using a
client-side architecture.
Base URL Structure
The API endpoints follow two primary URL patterns:- API Endpoints:
https://[your-space].spaces.nexudus.com/api/public/... - Localized Endpoints:
https://[your-space].spaces.nexudus.com/{lang}/...
HTTP Methods
The API primarily uses these HTTP methods:GET- Retrieve data (most common)POST- Create resources and submit dataPUT- Update existing resourcesDELETE- Remove resourcesPATCH- Update resources partially
Response Format
API responses return JSON with consistent structures. List endpoints follow theApiListResult<T> pattern:
Single-record Responses
For single-record endpoints.Error Handling
Error responses generally use HTTP 400 status code with and error code:API Client Implementation
The portal uses a custom HTTP client based on Axios with these characteristics:- Bearer token authentication
- Timezone-aware requests (
X-Use-Timezoneheader). - JSON content type by default
Request Shaping
The API supports request shaping to optimize response size:Multi-tenancy Support
The application supports multi-tenancy through dynamic domain resolution:- Each location has its own subdomain (
your-space.spaces.Nexudus.com)
API Throttling Limits
The API enforces throttling rules to prevent abuse and ensure fair usage.Limits apply per client (based on request signature) and vary depending on method, endpoint, and time window.
General Limits
| Scope | Methods | Limit | Window |
|---|---|---|---|
| Per second | Any | 10 requests | 1 sec |
| Per minute | Any | 120 requests | 1 min |
| Per hour | Any | 5000 requests | 1 hour |
| Per day | Any | 200,000 requests | 24 hours |
| POST/PUT/DELETE (minute) | POST, PUT, DELETE | 60 requests | 1 min |
| POST/PUT/DELETE (day) | POST, PUT, DELETE | 5000 requests | 24 hours |
Public API Limits
| Endpoint | Methods | Limit | Window |
|---|---|---|---|
/api/public* | Any | 10 requests | 5 sec |
/api/public/checkin | Any | 60 requests | 1 min |
Endpoint-Specific Limits
| Endpoint | Methods | Limit | Window |
|---|---|---|---|
/api/Spaces/CoworkerPricePlanHistories | Any | 1 request | 10 sec |
/api/Sys/AuditTrailEntries | Any | 1 request | 60 sec |
/api/spaces/coworkerDataFiles | POST, PUT | 5 requests | 1 min |
/api/spaces/coworkerMessages | POST, PUT | 5 requests | 1 min |
/api/billing/proposals/runcommand | Any | 10 requests | 1 min |
/api/billing/coworkercontracts/runcommand | Any | 10 requests | 1 min |
/api/billing/coworkerinvoices/runcommand | Any | 10 requests | 1 min |
/api/nexpos/validatepin | Any | 60 requests | 1 min |
*/bigquery/pushall | Any | 1 request | 12 min |
/api/integrations/textract | Any | 12 requests | 1 min |
/api/integrations/openai | Any | 12 requests | 1 min |
/api/sys/users/sendmagiclink | Any | 12 requests | 1 min |