About 62,500 results
Open links in new tab
  1. rest - What exactly is RESTful programming? - Stack Overflow

    Mar 22, 2009 · To understand Restful programming or Restful API. First, you have to understand what API is, on a very high-level API stands for Application Programming Interface, it's …

  2. What's the difference between REST & RESTful - Stack Overflow

    Mar 24, 2025 · What's the difference between a REST system and a system that is RESTful? From a few things I've read most so called REST services are actually RESTful services.

  3. How to understand "RESTful API is stateless"? - Stack Overflow

    Dec 7, 2015 · 2 RESTful API is stateless because the server doesn't need to know the client state to process the request. Each request from the client comes with all info required (state …

  4. REST API 404: Bad URI, or Missing Resource? - Stack Overflow

    314 I'm building a REST API, but I've encountered a problem. It seems that accepted practice in designing a REST API is that if the resource requested doesn't exist, a 404 is returned. …

  5. What is difference between REST and API? - Stack Overflow

    Dec 16, 2016 · REST is a type of API. Not all APIs are REST, but all REST services are APIs. API is a very broad term. Generally it's how one piece of code talks to another. In web …

  6. What does stateless RESTful API actually mean? - Stack Overflow

    Jan 4, 2020 · 5 In normal stateful API html pages are returned, whereas in Angular each request to back-end returns a JavaScript object instead. Does only that fact make the back-end …

  7. 400 BAD request HTTP error code meaning? - Stack Overflow

    Oct 30, 2013 · A 400 means that the request was malformed. In other words, the data stream sent by the client to the server didn't follow the rules. In the case of a REST API with a JSON …

  8. What is idempotency in HTTP methods? - Stack Overflow

    Jul 10, 2017 · I've read HTTP documentation, but I can't understand what is idempotency. Can someone help?

  9. What exactly is a Rest API - Stack Overflow

    Dec 29, 2016 · What is Rest API, why is it used, and how can I go about creating one and learning more about it? All functions should be of either GET/POST/DELETE/PUT form?

  10. What is the difference between POST and PUT in HTTP?

    The idea of a RESTful-URL is actually a violation of REST as the server is in charge of the URL structure and should be free to decide how to use it to avoid coupling. If this confuses you read …