{"id":20288667,"url":"https://github.com/nixhantb/restapi-university","last_synced_at":"2026-05-12T04:36:25.701Z","repository":{"id":172222820,"uuid":"649003097","full_name":"nixhantb/restapi-university","owner":"nixhantb","description":"REST-API for your universities using .NET core 7","archived":false,"fork":false,"pushed_at":"2023-06-15T08:10:47.000Z","size":266,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-14T08:37:47.919Z","etag":null,"topics":["authentication","csharp","dotnet","dotnet-core","jwt-token","oauth","rest","rest-api","restful-api","university"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nixhantb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-06-03T13:22:02.000Z","updated_at":"2023-09-17T15:04:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"9b95b262-1a58-411b-9ed7-c94d1bb8c3cb","html_url":"https://github.com/nixhantb/restapi-university","commit_stats":null,"previous_names":["nix-code/university.catalog.restapi","nix-code/restapi-university","nixhantb/restapi-university"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nixhantb%2Frestapi-university","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nixhantb%2Frestapi-university/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nixhantb%2Frestapi-university/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nixhantb%2Frestapi-university/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nixhantb","download_url":"https://codeload.github.com/nixhantb/restapi-university/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241782312,"owners_count":20019392,"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","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":["authentication","csharp","dotnet","dotnet-core","jwt-token","oauth","rest","rest-api","restful-api","university"],"created_at":"2024-11-14T14:48:37.724Z","updated_at":"2025-12-03T08:02:04.797Z","avatar_url":"https://github.com/nixhantb.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# University REST API\n\nThis is a RESTful API for managing student, teacher, grade, and course data for a university.\n\n## Technologies Used\n\n- .NET Core\n- ASP.NET Core Web API\n- Entity Framework Core\n- MYSQL Server\n- JWT or Oauth authorization \n- React (optional, if you're building a React frontend)\n\n\n## Getting Started\n\nTo get started with the University API, follow these steps:\n\n1. Clone the repository:\n\n    ```shell\n   git clone git@github.com:Nix-code/University.Catalog.RestAPI.git\n\n2. Install the required dependencies:\n\n    ```shell\n    dotnet restore\n\n3. Configure the database connection in appsettings.json or appsettings.Development.json\n\n4. Run the API:\n\n    ```shell\n    dotnet run\n\n5. The API will start running on **https://localhost:port**\n\n# API Endpoints\n\nThe University API provides the following endpoints for accessing student's detail:\n\n- GET /api/students: Get all students\n\n- GET /api/students/{id}: Get a specific student by ID\n\n- POST /api/students: Create a new student\n\n- PUT /api/students/{id}: Update an existing student\n\n- DELETE /api/students/{id}: Delete a student\n\nSimilar endpoints are available for teachers, grades, and courses\n\n## Directory Tree\n```\n└── University\n    ├── BusinessLogic\n    │   └── ModelsDtos\n    │       └── Student.Model.Dto\n    │           ├── CreateStudentRecordDto.cs\n    │           ├── StudentEntityDto.cs\n    │           └── UpdateStudentRecordDto.cs\n    ├── DataAccess\n    │   ├── Entities\n    │   │   ├── Course.Entity\n    │   │   │   └── CourseEntity.cs\n    │   │   ├── Grade.Entity\n    │   │   │   └── GradeEntity.cs\n    │   │   ├── Student.Entity\n    │   │   │   └── StudentEntity.cs\n    │   │   └── Teacher.Entity\n    │   │       └── TeacherEntity.cs\n    │   └── Persistence\n    │       └── StudentPersistence\n    │           ├── DbContext.cs\n    │           └── Repositories\n    │               ├── IStudentRepository.cs\n    │               └── StudentRepository.cs\n    ├── Helper\n    │   └── StudentHelper.cs\n    └── Presentation\n        └── Controllers\n            ├── Course.Controller\n            │   └── CourseController.cs\n            ├── Grade.Controller\n            │   └── GradeController.cs\n            ├── Student.Controller\n            │   └── StudentController.cs\n            └── Teacher.Controller\n                └── TeacherController.cs\n\n```\n## Demo\n\n![GET Request Demo](university.assets/get_request.png)\n\n\n\n## Contributing\nContributions are welcome! If you have any suggestions, bug reports, unit tests or feature requests, please open an issue or submit a pull request.\n\n## License\nThis project is licensed under the **MIT License**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnixhantb%2Frestapi-university","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnixhantb%2Frestapi-university","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnixhantb%2Frestapi-university/lists"}