Home/Glossary/HTTP Method
Glossary

HTTP Method

HTTP methods (also called HTTP verbs) indicate the desired action to be performed on a resource. The most common methods are GET (retrieve data), POST (create new data), PUT (update existing data), PATCH (partially update data), and DELETE (remove data). These methods are fundamental to RESTful API design and map directly to CRUD operations. Using the correct HTTP method is important for building predictable and standards-compliant APIs.

Related Terms

Related Articles