Appwrite Backend API
Appwrite is a comprehensive open-source backend-as-a-service platform offering REST and GraphQL APIs for authentication, databases, storage, functions, messaging, and real-time features. Self-host or use managed cloud—ideal for secure, scalable app development.
1
Endpoints
28
Views
Jul 20, 2025
Last Checked
NaN
Rate Limit
API Endpoints
Registers a new user account
Full URL
http://localhost/v1/usersCode Examples
curl -X POST 'http://localhost/v1/users'Parameters
{
"name": "John Doe",
"email": "[email protected]",
"userId": "unique()",
"password": "secret"
}Example Response
{
"$id": "abc123",
"name": "John Doe",
"registration": "2023-07-18T15:35:00Z"
}Version
v1
Rate Limit
50 signups/minute
Tags
backendserver
Related APIs
Discover similar APIs that might interest you