WeWeb
WeWeb has dedicated Xano plugins for both data fetching and authentication, making it the most tightly integrated no-code option.Data Source Plugin
Add your Xano connection
Supply your Personal Access Token (PAT) from the Metadata API. This allows WeWeb to discover your API groups and endpoints automatically.
Create Collections to fetch data
Configure collections for each data set you need. You can set global headers at the plugin or collection level.
Auth Plugin
The WeWeb Xano Auth Plugin handles signup, login, logout, gated content, and role-based redirects. WeWeb Xano Auth Plugin DocumentationBubble
Bubble can connect to Xano in two ways: through a community-built Xano connector, or through Bubble’s native API Connector.Xano Connector Plugin
A community-driven plugin built around the official Xano JS SDK. It simplifies authentication and supports real-time features. Bubble Xano Connector GuideBubble API Connector
Use Bubble’s built-in API Connector to configure Xano endpoints manually. You’ll copy endpoint URLs, methods, headers, and request/response structures from your Swagger documentation.Get your Swagger documentation URL
We recommend using the combined (workspace-level) Swagger documentation so you have all endpoints in one place. See Swagger/OpenAPI Docs for how to enable it.
Configure each endpoint
Using your Swagger docs as reference, set the URL, method, headers (
Authorization: Bearer <token>), and request body for each endpoint you need.Other No-Code Platforms (REST API)
Any no-code platform that supports making HTTP/REST requests can connect to Xano. The general approach is the same regardless of the platform:General Steps
Get your API endpoint URLs
Open your Swagger/OpenAPI documentation in Xano. We recommend enabling combined (workspace-level) documentation so you have all endpoints in one place. Copy the base URL and endpoint paths you need.
Configure your HTTP requests
In your no-code platform’s API/HTTP request feature, set up:
- URL: Your Xano endpoint URL (e.g.,
https://your-instance.xano.io/api:your-group/endpoint) - Method: GET, POST, PATCH, DELETE, etc. (as documented in Swagger)
- Headers:
Content-Type: application/jsonandAuthorization: Bearer <token>for protected endpoints - Body: JSON request body for POST/PATCH requests, matching the schema in your Swagger docs
Handle authentication
Call your
auth/login or auth/signup endpoint to get a JWT token. Store the token and include it in the Authorization header for subsequent requests.Common Platforms
This approach works with platforms like:- FlutterFlow — Use the API Call feature to configure REST endpoints
- Adalo — Use Custom Actions or the API Connector to call Xano endpoints
- Softr — Connect via the REST API integration
- Glide — Use the API integration feature with your Xano endpoints
- AppGyver / SAP Build Apps — Configure REST API data sources
Tips
- Personal Access Tokens — Platforms with native Xano integrations (like WeWeb) use PATs from the Metadata API to discover your API groups. This is separate from the JWT tokens your app’s users will use.
- CORS — Xano handles CORS automatically. If you encounter issues, check your API group’s CORS settings.
- Branching — Use Xano branches for backend changes so your production frontend stays stable while you develop.
- Platform docs first — For platform-specific configuration (plugin settings, data binding, deployment), the best source of truth is always the platform’s own documentation.