Skip to content

User Info

User Info

  • Route: GET /me
  • Description: Retrieves information about the currently authenticated user.
  • Method: GET
  • Successful Response:
    • Status Code: 200 OK
    • Content:
      {
          "id": "integer",
          "username": "string",
          "email": "string"
      }
      
  • Bad Response:
    • Status Code: 401 Unauthorized
    • Content:
      {
          "detail": "Authentication credentials were not provided"
      }