Home
iinsight API.
API is short for: Application Programming Interfaces. It's a communication platform to exchange data between computer systems.
REST API
An API is a set of rules that lets programs talk to each other, exposing data and functionality across the Internet in secure and consistent format.
REST stands for: Representational State Transfer. This is an architectural pattern that describes how distributed systems can expose a consistent interface. When people use the term ‘REST API’, they are generally referring to an API accessed using the HTTP protocol at a predefined set of URLs.
These URLs represent various resources returned in a JSON format. Often resources have one or more methods that can be performed on them over HTTP, like:
- GET (a list of item),
- POST (insert a new item),
- PUT (update an item),
- and DELETE (delete and item).