Skip to content

Glossary

REST API

A REST API is a web interface that exposes resources through URLs and standard HTTP methods — GET, POST, PUT, PATCH and DELETE. It is stateless, meaning each request carries all the context the server needs, and usually exchanges JSON. Its simplicity and use of plain HTTP make it the most common style of web API.

Related terms