On this page
- 1 What is REST API? | Web Service
- 2 What is REST API? | Web Service
- 2.1 Resource
- 2.2 HTTP Methods
- 2.2.0.1 Model View Controller (MVC) Architecture
- 2.2.0.2 Unlocking AI Potential: The Power of Prompt Engineering
- 2.2.0.3 Explore the power of programming comments!
- 2.2.0.4 Artificial Intelligence (AI)
- 2.2.0.5 OpenAI blames DDoS attack for ongoing ChatGPT outage, Know about DoS Attack
- 2.2.0.6 IoT – Internet of Things
- 2.2.0.7 Google celebrates its 25th birthday with a doodle
- 2.2.0.8 AWS Overview
- 2.2.0.9 Mojo🔥: The Next Generation Programming Language for AI
- 2.2.0.10 What is ChatGPT?
- 2.2.0.11 Blogging: A good source of your passive income !
- 2.2.0.12 MERN: The MERN Stack
- 2.2.0.13 Windows Commands
- 2.2.0.14 Innovation in Computer Science
- 2.2.0.15 Technology Full Forms: You Should Know
- 2.2.0.16 What is Cyber Security and How to build a successful career in it?
- 2.2.0.17 Payment Gateways
- 2.2.0.18 What is DevOps?
- 2.2.0.19 Best Technology to Learn for Future
- 2.2.0.20 C Program
- 2.2.0.21 Why is internet safety important
- 2.2.0.22 How Much Does Website Development Cost?
- 2.2.0.23 How to choose a web hosting provider
- 2.2.0.24 How to become a Front-end Web Developer? फ्रंट-एंड वेब डेवलपर कैसे बनें?
- 2.3 Leave A Comment Cancel reply
What is REST API? | Web Service
What is REST API? | Web Service
REST API
A REST API (also known as RESTful API) is an application programming interface (API or web API) that conforms to the constraints of REST architectural style and allows for interaction with RESTful web services. REST stands for representational state transfer and was created by computer scientist Roy Fielding.
- What is a REST API?
- What can it do for you?
- How do you use it?
An API is an application programming interface. It is a set of rules that allow programs to talk to each other. The developer creates the API on the server and allows the client to talk to it.
Representational State Transfer is a software architectural style that defines a set of constraints to be used for creating Web services. Web services that conform to the REST architectural style, called RESTful Web services, provide interoperability between computer systems on the internet.
Server send some data to client in form of JSON/XML not HTML
Resource
https://statelyworld.com/add?num1=2&num2=2
https://statelyworld.com/questions?subject=php
https://statelyworld.com/questions/php
HTTP Methods
C | Create | POST |
R | Read | GET |
U | Update | PUT |
D | Delete | DELETE |