I am implementing an API endpoint that receives text through the request body, parses it, converts into structured data, and returns it as JSON in the response.
Since no existing resource is being retrieved, and no resource on the server is being created or modified, I am wondering what is the proper HTTP request type to use? It works with both POST and GET, but which one is technically proper?