{"id":26687059,"url":"https://github.com/tirthraj1605/fastapi-user-management-crud-api","last_synced_at":"2025-07-30T15:06:57.056Z","repository":{"id":282582710,"uuid":"949042801","full_name":"Tirthraj1605/FastAPI-User-Management-CRUD-API","owner":"Tirthraj1605","description":"A simple FastAPI-based CRUD application to manage user data with search functionality. Includes endpoints for creating, reading, updating, deleting, and searching users by name.","archived":false,"fork":false,"pushed_at":"2025-03-16T12:30:47.000Z","size":87,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T12:16:19.674Z","etag":null,"topics":["api-project","backend-development","beginner-friendly-project","crud-api","fastapi","python","restful-api","user-management","web-api"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tirthraj1605.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-15T14:46:45.000Z","updated_at":"2025-03-16T12:30:50.000Z","dependencies_parsed_at":"2025-03-15T16:20:37.174Z","dependency_job_id":"d5ff9f15-fc98-4357-93f9-66fa3ae5b7cd","html_url":"https://github.com/Tirthraj1605/FastAPI-User-Management-CRUD-API","commit_stats":null,"previous_names":["tirthraj1605/fastapi-user-management-crud-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Tirthraj1605/FastAPI-User-Management-CRUD-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tirthraj1605%2FFastAPI-User-Management-CRUD-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tirthraj1605%2FFastAPI-User-Management-CRUD-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tirthraj1605%2FFastAPI-User-Management-CRUD-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tirthraj1605%2FFastAPI-User-Management-CRUD-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tirthraj1605","download_url":"https://codeload.github.com/Tirthraj1605/FastAPI-User-Management-CRUD-API/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tirthraj1605%2FFastAPI-User-Management-CRUD-API/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267889223,"owners_count":24161149,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-project","backend-development","beginner-friendly-project","crud-api","fastapi","python","restful-api","user-management","web-api"],"created_at":"2025-03-26T12:16:23.389Z","updated_at":"2025-07-30T15:06:57.012Z","avatar_url":"https://github.com/Tirthraj1605.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⚡ FastAPI User Management CRUD API\n\n**FastAPI User Management CRUD API** is a **high-performance, Python-based RESTful API** built with **FastAPI**, offering full **Create, Read, Update, Delete (CRUD)** operations for managing users. It uses an **in-memory database (Python dictionary)** for lightweight and quick prototyping.\n\n---\n\n## 🔗 Live Demo\n\n👉 [Try the Live API](https://fastapi-user-management-crud-api.onrender.com/docs)\n\n---\n\n## 📺 Screenshot\n\n![User Management API Screenshot](Screenshot.png)\n\n---\n\n## 🚀 Features\n\n- ✅ Create a new user  \n- 🔍 Get all users  \n- 🔎 Get a specific user by ID  \n- ✏️ Update user details  \n- ❌ Delete a user by ID  \n- ⚡ FastAPI Swagger UI for interactive documentation at `/docs`\n- 📊 SQLite integration using SQLAlchemy ORM\n- 🗂️ Modular project structure (models, database, main)\n\n---\n\n## 🛠 Tech Stack\n\n- Python 3  \n- FastAPI\n- pydantic\n- Uvicorn \n\n---\n\n## 📑 API Endpoints\n\n| Method | Endpoint       | Description             |\n|--------|----------------|-------------------------|\n| GET    | `/`            | Welcome message         |\n| POST   | `/users/`      | Create a new user       |\n| GET    | `/users/`      | Get all users           |\n| GET    | `/users/{id}`  | Get user by ID          |\n| PUT    | `/users/{id}`  | Update user by ID       |\n| DELETE | `/users/{id}`  | Delete user by ID       |\n\n---\n\n## How to Run \n\n### 1️⃣ Clone the repository\n``git clone https://github.com/Tirthraj1605/FastAPI-User-Management-CRUD-API.git``\n``cd FastAPI-User-Management-CRUD-API``\n\n### 2️⃣ Create and activate a virtual environment (optional but recommended)\n``python -m venv venv``\n### On Windows\n``venv\\Scripts\\activate``\n### On Linux/macOS\n``source venv/bin/activate``\n\n### 3️⃣ Install dependencies\n``pip install -r requirements.txt``\n\n### 4️⃣ Run the FastAPI app\n``uvicorn main:app --reload``\n\n---\n\n## Author \n- Tirthraj Bhalodiya\n- tirthrajbhalodiya2003@gmail.com\n- [LinkedIn](https://www.linkedin.com/in/tirthraj-bhalodiya-97534b227/)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftirthraj1605%2Ffastapi-user-management-crud-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftirthraj1605%2Ffastapi-user-management-crud-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftirthraj1605%2Ffastapi-user-management-crud-api/lists"}