- HttpGet action verb represents a retrieval operation from a resource, with optional arguments or filters.
- HttpGet can’t be used to send large data to the server.
- All the data that is sent via HttpGet is attached to the resource URL which is of limited length (255 chars max)
- HttpGet should only be used to fetch data
- To send complex data over HttpGet we can use FromUrl decorator over the parameters in the controller action to which the request is being made.

What are some limitations of HttpGet?
- HttpGet action verb represents a retrieval operation from a resource, with optional arguments or filters.
- HttpGet can't be used to send large data to the server.
- All the data that is sent via HttpGet is attached to the resource URL which is of limited length (255 chars max)
- HttpGet should only be used to fetch data
- To send complex data over HttpGet we can use FromUrl decorator over the parameters in the controller action to which the request is being made.