Glossary

CRUD

CRUD stands for Create, Read, Update, and Delete - the four fundamental operations for persistent data storage. Most APIs and database interactions map to these operations. In RESTful APIs, CRUD operations typically correspond to HTTP methods: POST (Create), GET (Read), PUT/PATCH (Update), and DELETE (Delete). Understanding CRUD is essential for working with any data-driven application.

Related Terms

Related Articles