REST API

Introduction

  • It is an uniform interface with clear API end point definition and request and response format that used to transfer the data between application

  • Stateless client-server communication, meaning no client information is stored between get requests and each request is separate and unconnected. The server will not store the detail of prior requests, therefore no session will be used

  • By using http protocol to reach API end point, and return the data back in json format generally

Last updated

Was this helpful?