{"id":15142641,"url":"https://github.com/gitkodev/fastapi-notes-service","last_synced_at":"2026-03-27T04:50:32.174Z","repository":{"id":256132255,"uuid":"853668162","full_name":"gitkoDev/FastAPI-Notes-Service","owner":"gitkoDev","description":"Notes microservice REST API created with Python and FastAPI","archived":false,"fork":false,"pushed_at":"2024-09-12T07:22:33.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T14:49:18.094Z","etag":null,"topics":["fastapi","fastapi-template","python","repository-pattern"],"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/gitkoDev.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":"2024-09-07T07:30:19.000Z","updated_at":"2024-09-12T07:22:36.000Z","dependencies_parsed_at":"2024-09-12T15:02:07.833Z","dependency_job_id":null,"html_url":"https://github.com/gitkoDev/FastAPI-Notes-Service","commit_stats":null,"previous_names":["gitkodev/fastapi-microservice","gitkodev/fastapi-notes-service"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitkoDev%2FFastAPI-Notes-Service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitkoDev%2FFastAPI-Notes-Service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitkoDev%2FFastAPI-Notes-Service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitkoDev%2FFastAPI-Notes-Service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gitkoDev","download_url":"https://codeload.github.com/gitkoDev/FastAPI-Notes-Service/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246368672,"owners_count":20766061,"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":["fastapi","fastapi-template","python","repository-pattern"],"created_at":"2024-09-26T09:43:14.290Z","updated_at":"2025-12-28T05:10:41.705Z","avatar_url":"https://github.com/gitkoDev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastAPI Notes Microservice\nPython + `FastAPI` asynchronous REST API. Authentication is implemented using JWT. Each user can add, modify and access their own notes ONLY using a valid JSON Web Token\n\n## Tools used\n\n\n- `Database` \u0026nbsp; **=\u003e**  \u0026nbsp;  Postgres + [asyncpg](https://github.com/MagicStack/asyncpg)\n- `Database migrations` \u0026nbsp; **=\u003e**  \u0026nbsp; [Alembic](https://github.com/sqlalchemy/alembic)\n- `Data validation` \u0026nbsp; **=\u003e**  \u0026nbsp;  [Pydantic](https://github.com/pydantic/pydantic)\n- `ORM` \u0026nbsp; **=\u003e**  \u0026nbsp; [SQLAlchemy](https://github.com/sqlalchemy/sqlalchemy)\n- `Authentication and authorization` \u0026nbsp; **=\u003e**  \u0026nbsp;  [Python Jose](https://github.com/mpdavis/python-jose)\n\n## Startup\n\nRun `make run` or `docker compose up --build `in root folder to apply all necessary migrations and start the project.\n\n## Endpoints\n\n### *Swagger documentation with request/response body examples available at `http://127.0.0.1:8000/docs` after project startup*\n### Authorization\n- ```0.0.0.0:8080/auth ``` \u0026ensp; `=\u003e`  \u0026ensp; **POST** \u0026ensp;  `=\u003e` \u0026ensp; Create new user\n- ```0.0.0.0:8080/auth/token``` \u0026ensp; `=\u003e`  \u0026ensp; **POST** \u0026ensp;  `=\u003e` \u0026ensp; Log in to get access token\n\n### API\n- ```0.0.0.0:8080/api/v1``` \u0026ensp; `=\u003e`  \u0026ensp; **POST** \u0026ensp;  `=\u003e` \u0026ensp; Add note to user\n- ```0.0.0.0:8080/api/v1``` \u0026ensp; `=\u003e`  \u0026ensp; **GET** \u0026ensp;  `=\u003e` \u0026ensp; Get all notes for user\n- ```0.0.0.0:8080/api/v1/{note_id}``` \u0026ensp; `=\u003e`  \u0026ensp; **GET** \u0026ensp;  `=\u003e` \u0026ensp; Get user's note by note id\n- ```0.0.0.0:8080/api/v1/{note_id}``` \u0026ensp; `=\u003e`  \u0026ensp; **PUT** \u0026ensp;  `=\u003e` \u0026ensp; Update user's note by node id\n- ```0.0.0.0:8080/api/v1/{note_id}``` \u0026ensp; `=\u003e`  \u0026ensp; **DELETE** \u0026ensp;  `=\u003e` \u0026ensp; Delete user's note by note id\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitkodev%2Ffastapi-notes-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgitkodev%2Ffastapi-notes-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitkodev%2Ffastapi-notes-service/lists"}