FastAPI + SQLModel Backend as a Service
💡 Tip: Press Ctrl+Enter to execute
Database URL:
Loading...
Use the FastAPI automatic documentation at /docs for interactive API testing.
curl -X POST "http://localhost:8000/collections/documents?collection=users" \
-H "Content-Type: application/json" \
-d '{"data": {"name": "John Doe", "email": "john@example.com", "age": 30}}'
curl -X GET "http://localhost:8000/collections/{collection_id}/documents?age_gte=18&limit=10"
curl -X PATCH "http://localhost:8000/collections/{collection_id}/documents/{doc_id}" \
-H "Content-Type: application/json" \
-d '{"data": {"name": "Jane Doe", "age": 31}}'
curl -X POST "http://localhost:8000/collections/{collection_id}/documents/batch-create" \
-H "Content-Type: application/json" \
-d '{"documents": [{"name": "Alice", "age": 25}, {"name": "Bob", "age": 35}]}'
⚠️ Note about editing columns: