eli5: The difference between RESTful API and a Web API

119 views

eli5: The difference between RESTful API and a Web API

In: 6

3 Answers

Anonymous 0 Comments

REST is a design philosophy and Web is a deployment environment, so they’re actually independent. Your api can be either neither or both.

Web just means it’s accessible on the internet.

REST stands for representational state transfer, and basically means the API doesn’t change state a result of any request you make. Each request should get the same response regardless of what other requests happened before.

You are viewing 1 out of 3 answers, click here to view all answers.