From f5ac21ffefc9d6375c51eb8aaa9d6f976f085d1e Mon Sep 17 00:00:00 2001 From: emreumar Date: Sat, 18 Jul 2026 20:24:47 +0300 Subject: [PATCH] docs(readme): correct profile creation method to POST in endpoints table Signed-off-by: emreumar --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffd3909..91a05ae 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ uvicorn app.main:app --reload |--------|-----------------------|--------------------------| | GET | `/health` | Health check | | GET | `/sum?a=1&b=2` | Compute sum of two ints | -| GET | `/profile` | Create a new profile | +| POST | `/profile` | Create a new profile | | GET | `/profile/{username}` | Get a profile by name | | DELETE | `/profile/{username}` | Delete a profile | | GET | `/search?q=term` | Search profiles |