This document provides an overview of web services and APIs for mobile application development. It defines web services and APIs, describes their characteristics and differences. It also discusses the common types of web services for Android like XML-RPC, UDDI, SOAP and REST. The document explains the components of an API request including endpoints, headers, methods, and request data. It introduces JSON formats and provides examples. Finally, it discusses tools for testing APIs like web browsers and Postman and introduces fake APIs for development and testing purposes.
Best practices and advantages of REST APIsAparna Sharma
油
In this article, I am going to share the best practices and the advantages of REST APIs, as I am working with a team on a REST-based web application. Newsdata.io news API is a REST-based API that fetches news data from thousands of news websites in JSON format. Therefore, I have a basic understanding of REST APIs that I am going to share with you.
The document discusses the development of a REST API for an e-commerce site using the MEAN stack. It describes the key components of the MEAN stack - MongoDB for the database, Express.js for the backend framework, Angular.js for the frontend framework, and Node.js for the runtime environment. It then outlines the architecture and implementation of the REST API, covering authentication, resources, HTTP methods, and adherence to REST architectural constraints like being stateless. The advantages of the REST approach are also highlighted.
API stands for Application Programming Interface. APIs allow communication between applications or services by providing a set of functions and procedures. API testing involves testing APIs and their integration with services to ensure correct functionality, reliability, performance, and security. Postman is a popular tool for API development that allows users to design, build, test, and document APIs through a graphical user interface.
The document discusses various Salesforce APIs including REST API, SOAP API, Bulk API, and Streaming API. It provides details on when to use each API and how to make calls to external APIs from Apex. REST API is recommended for most use cases due to its simplicity. Named credentials can be used to streamline authentication for external API calls from Apex.
The document discusses APIs, defining them as interfaces that allow applications to communicate and share data over a network. It notes that APIs act as an interface between clients and servers, exposing backend data through operations, inputs, outputs, and data types. The document also outlines the benefits of APIs in standardizing communication and enabling reusability. It introduces common API terminology and types, focusing on web APIs which are the most widely used.
Simple Object Access Protocol (SOAP) and Representational State Transfer (REST) are two answers to the same question: how to access Web services. The choice initially may seem easy, but at times it can be surprisingly difficult. SOAP is a standards-based Web services access protocol that has been around for a while and enjoys all of the benefits of long-term use. Originally developed by Microsoft, SOAP really isnt as simple as the acronym would suggest. The Difference between SOAP vs REST APIs REST is the newcomer to the block. It seeks to fix the problems with SOAP and provide a truly simple method of accessing Web services. Shabnam Kumari | Deepak"REST based API" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456-6470, Volume-1 | Issue-4 , June 2017, URL: http://www.ijtsrd.com/papers/ijtsrd2200.pdf http://www.ijtsrd.com/computer-science/computer-security/2200/rest-based-api/shabnam-kumari
.Net Framework Architecture: All You Need to Know: All You Need to Knowdotnetindiaexperts
油
In the modern world, the creation of applications that are easy to scale, protect from threats, and to adapt to change have great importance. It is good to know that .NET Framework architecture is well thought out and covers a great variety of application types, from traditional Windows and Web-based to the rapidly growing Cloud and Mobile-oriented applications.
https://dotnetexpertsindia.com/blog/net-framework-architecture/
Web services can be accessed over a network and are called using HTTP. There are two main types: SOAP uses XML and is language/platform independent; REST uses URI to expose resources and can use JSON. Java has JAX-WS for SOAP and JAX-RS for RESTful services. REST is faster and uses less bandwidth than SOAP. The document discusses implementing REST services in Java using JAX-RS and Jersey, including using annotations and returning Response objects.
API testing validates application programming interfaces (APIs). API testing focuses on functionality, reliability, performance, and security of programming interfaces. Common protocols for API testing include HTTP, REST, SOAP, JMS, and UDDI. REST uses normal HTTP verbs like GET, POST, PUT, and DELETE and supports data formats like plain text, HTML, XML, and JSON. CRUD (create, read, update, delete) operations can be performed through HTTP requests in API testing.
API 101 provides an introduction to APIs and related concepts:
APIs expose useful data and functionality for developers to consume in their own programs. They allow different systems to communicate through standardized interfaces and protocols. The document discusses REST APIs and compares architectural styles like RPC, covering topics such as HTTP methods, URI design, and authentication. It examines challenges in API design like versioning, security, and avoiding unnecessary data transfers.
Roy Fielding introduced the concept of RESTful APIs in 2000. REST has since become a dominant framework for sending requests from clients to servers to interact with and receive data in a format clients can use. A RESTful API uses well-established HTTP methods like GET, POST, PUT, and DELETE to allow standardized communication and efficient use of network resources. REST defines how clients and servers exchange information about resources through standardized requests and responses.
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...Kevin Lee
油
We are living in the world of abundant information, and the ability to seamlessly exchange information between customers, partners and internal business units is vital for success for any organization. Today, much of the information can be accessed and exchanged between different systems over the internet using web services. Web services allow different systems to exchange data over internet. The paper will show how SAS速 can exchange the data with the different software system over internet using web services.
The paper will introduce the basic concepts of web service and its method of communication: SOAP(Simple Object Access protocol) and REST(Representational state transfer). First, the paper will briefly describe SOAP and its structure HTTP header and SOAP envelop. The paper will show the examples of how SAS programmers send a request to the web service and receive the response from the web service using SOAP in SAS environment. The paper will also show how SAS programmers can create a SOAP request using SOAPUI, the open-source software which allows the users to create SOAP and test the connectivity with the web service. The paper will explain how FILENAME and SOAPWEB function send SOAP request file and receive response file. The paper will also explain the structure of SOAP response file in XML.
The paper will show the structure of REST, and it will instruct how SAS programmers write SAS codes to get the data from other system using REST. The paper will introduce SAS FILEMANE, its url and debug options.
The document discusses APIs and provides examples of RESTful APIs. It describes how RESTful APIs are built upon a domain model to provide resources that can be navigated through requests. This allows clients to construct custom requests to get precisely the data needed, rather than requiring multiple calls or getting excess data. The domain model also provides a unified framework for request and response semantics.
The document discusses web services and how they allow different software applications to communicate and share resources despite running on different platforms or using different programming languages. Web services use open standards like XML, SOAP and HTTP to define interfaces and transmit data between applications in a self-contained, platform-independent way. They enable reuse of application components and integration of existing software.
Web services allow programs to communicate over a network. There are two main types: SOAP and REST. SOAP uses XML and HTTP POST, while REST can use HTTP verbs like GET and POST with data formats like JSON or XML. Authentication for web services can be done with basic authentication, tokens, or OAuth. REST follows principles like using resources and URIs, being stateless, and cacheable. SOAP defines an envelope, header, and body for messages in an XML format.
This document provides an overview of API testing tools and methods. It defines APIs and REST, describes how API testing works, lists common API testing tools like Postman, and outlines different types of API tests including functionality, reliability, load, and security testing. Examples are given of the GET, POST, PUT, and DELETE HTTP methods along with response status codes. A live demo of an API is presented at the end.
This document provides an overview of API testing tools and methods. It defines APIs and REST, describes how API testing works, lists common API testing tools like Postman, and outlines different types of API tests including functionality, reliability, load, and security testing. Examples are given of the GET, POST, PUT, and DELETE HTTP methods along with response status codes. A live demo of an API is presented at the end.
This document provides an overview of publishing and consuming web services. It defines web services and discusses SOAP and REST-based web services. SOAP web services use XML and HTTP, have advantages like language independence but disadvantages like being slow. REST services operate on resources using HTTP methods and have constraints like being stateless and cacheable. The document also discusses JSON web services and schemas for describing REST interfaces.
The document provides an overview of web technologies and servlet development environment setup. It discusses HTTP and the request-response model. It also covers servlet lifecycle including initialization, request handling, and destruction. The document explains setting up Java, Tomcat, and configuring the CLASSPATH for servlet development. It outlines the servlet API classes and interfaces like Servlet, ServletRequest, and ServletResponse.
Web services allow different software applications running on various platforms and programming languages to communicate and share resources. They use open standards like XML, SOAP and WSDL. SOAP is a messaging protocol that uses XML to transmit data over networks like the internet. WSDL describes web services and how other applications can access them. Altova provides tools like XMLSpy that help develop, test and debug web services using standards like SOAP and WSDL.
Here are some sample web services projects to try:
- Currency conversion service: Converts between currencies using live exchange rates
- Weather service: Gets current weather conditions for a city by calling a public API
- Book search service: Searches book titles and descriptions from a database
- Calculator service: Provides basic math operations like add, subtract, multiply, divide
- Address validation service: Validates and standardizes address fields for a location
- Image processing service: Resizes, crops or applies filters to images uploaded to a server
These cover common domains like finance, data, calculation etc. and demonstrate basic CRUD operations, external API calls, file uploads etc. Good for learning core web service concepts.
Learn how to take advantage of Apigility to create APIs from scratch or to expose current functionality from an existent system. You'll learn the core API concepts, processes, functionality, logic, and in general how you can create good APIs, including documentation and all the considerations you must have.
The document provides an overview of web services and their components. It discusses Service Oriented Architecture (SOA) and how web services implement SOA. The key components of web services identified are XML-RPC, SOAP, WSDL, and UDDI. SOAP is an XML-based protocol for exchanging messages between computers. WSDL provides a standard way to describe web services. UDDI allows services to be published and discovered.
Web services allow different software applications to communicate and share resources regardless of operating system or programming language. They use XML and open protocols like HTTP and SOAP. A web service is self-contained, self-describing application component that can be accessed over the web. WSDL describes the web service so clients know how to access it, while SOAP defines the message format for communication. Visual Studio provides tools to test web services by structuring test cases and suites, managing test requests and results, and automating validation.
What is Metrology Calibration Importance, Principles, and Types.pdfVIEW
油
Metrology calibration ensures precision in measurements, maintaining quality and compliance across industries. This article explores its importance, key principles, and various types. Learn how accurate calibration enhances reliability and efficiency in manufacturing and research.
More Related Content
Similar to Session 8 Android Web Services - Part 1.pdf (20)
Web services can be accessed over a network and are called using HTTP. There are two main types: SOAP uses XML and is language/platform independent; REST uses URI to expose resources and can use JSON. Java has JAX-WS for SOAP and JAX-RS for RESTful services. REST is faster and uses less bandwidth than SOAP. The document discusses implementing REST services in Java using JAX-RS and Jersey, including using annotations and returning Response objects.
API testing validates application programming interfaces (APIs). API testing focuses on functionality, reliability, performance, and security of programming interfaces. Common protocols for API testing include HTTP, REST, SOAP, JMS, and UDDI. REST uses normal HTTP verbs like GET, POST, PUT, and DELETE and supports data formats like plain text, HTML, XML, and JSON. CRUD (create, read, update, delete) operations can be performed through HTTP requests in API testing.
API 101 provides an introduction to APIs and related concepts:
APIs expose useful data and functionality for developers to consume in their own programs. They allow different systems to communicate through standardized interfaces and protocols. The document discusses REST APIs and compares architectural styles like RPC, covering topics such as HTTP methods, URI design, and authentication. It examines challenges in API design like versioning, security, and avoiding unnecessary data transfers.
Roy Fielding introduced the concept of RESTful APIs in 2000. REST has since become a dominant framework for sending requests from clients to servers to interact with and receive data in a format clients can use. A RESTful API uses well-established HTTP methods like GET, POST, PUT, and DELETE to allow standardized communication and efficient use of network resources. REST defines how clients and servers exchange information about resources through standardized requests and responses.
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...Kevin Lee
油
We are living in the world of abundant information, and the ability to seamlessly exchange information between customers, partners and internal business units is vital for success for any organization. Today, much of the information can be accessed and exchanged between different systems over the internet using web services. Web services allow different systems to exchange data over internet. The paper will show how SAS速 can exchange the data with the different software system over internet using web services.
The paper will introduce the basic concepts of web service and its method of communication: SOAP(Simple Object Access protocol) and REST(Representational state transfer). First, the paper will briefly describe SOAP and its structure HTTP header and SOAP envelop. The paper will show the examples of how SAS programmers send a request to the web service and receive the response from the web service using SOAP in SAS environment. The paper will also show how SAS programmers can create a SOAP request using SOAPUI, the open-source software which allows the users to create SOAP and test the connectivity with the web service. The paper will explain how FILENAME and SOAPWEB function send SOAP request file and receive response file. The paper will also explain the structure of SOAP response file in XML.
The paper will show the structure of REST, and it will instruct how SAS programmers write SAS codes to get the data from other system using REST. The paper will introduce SAS FILEMANE, its url and debug options.
The document discusses APIs and provides examples of RESTful APIs. It describes how RESTful APIs are built upon a domain model to provide resources that can be navigated through requests. This allows clients to construct custom requests to get precisely the data needed, rather than requiring multiple calls or getting excess data. The domain model also provides a unified framework for request and response semantics.
The document discusses web services and how they allow different software applications to communicate and share resources despite running on different platforms or using different programming languages. Web services use open standards like XML, SOAP and HTTP to define interfaces and transmit data between applications in a self-contained, platform-independent way. They enable reuse of application components and integration of existing software.
Web services allow programs to communicate over a network. There are two main types: SOAP and REST. SOAP uses XML and HTTP POST, while REST can use HTTP verbs like GET and POST with data formats like JSON or XML. Authentication for web services can be done with basic authentication, tokens, or OAuth. REST follows principles like using resources and URIs, being stateless, and cacheable. SOAP defines an envelope, header, and body for messages in an XML format.
This document provides an overview of API testing tools and methods. It defines APIs and REST, describes how API testing works, lists common API testing tools like Postman, and outlines different types of API tests including functionality, reliability, load, and security testing. Examples are given of the GET, POST, PUT, and DELETE HTTP methods along with response status codes. A live demo of an API is presented at the end.
This document provides an overview of API testing tools and methods. It defines APIs and REST, describes how API testing works, lists common API testing tools like Postman, and outlines different types of API tests including functionality, reliability, load, and security testing. Examples are given of the GET, POST, PUT, and DELETE HTTP methods along with response status codes. A live demo of an API is presented at the end.
This document provides an overview of publishing and consuming web services. It defines web services and discusses SOAP and REST-based web services. SOAP web services use XML and HTTP, have advantages like language independence but disadvantages like being slow. REST services operate on resources using HTTP methods and have constraints like being stateless and cacheable. The document also discusses JSON web services and schemas for describing REST interfaces.
The document provides an overview of web technologies and servlet development environment setup. It discusses HTTP and the request-response model. It also covers servlet lifecycle including initialization, request handling, and destruction. The document explains setting up Java, Tomcat, and configuring the CLASSPATH for servlet development. It outlines the servlet API classes and interfaces like Servlet, ServletRequest, and ServletResponse.
Web services allow different software applications running on various platforms and programming languages to communicate and share resources. They use open standards like XML, SOAP and WSDL. SOAP is a messaging protocol that uses XML to transmit data over networks like the internet. WSDL describes web services and how other applications can access them. Altova provides tools like XMLSpy that help develop, test and debug web services using standards like SOAP and WSDL.
Here are some sample web services projects to try:
- Currency conversion service: Converts between currencies using live exchange rates
- Weather service: Gets current weather conditions for a city by calling a public API
- Book search service: Searches book titles and descriptions from a database
- Calculator service: Provides basic math operations like add, subtract, multiply, divide
- Address validation service: Validates and standardizes address fields for a location
- Image processing service: Resizes, crops or applies filters to images uploaded to a server
These cover common domains like finance, data, calculation etc. and demonstrate basic CRUD operations, external API calls, file uploads etc. Good for learning core web service concepts.
Learn how to take advantage of Apigility to create APIs from scratch or to expose current functionality from an existent system. You'll learn the core API concepts, processes, functionality, logic, and in general how you can create good APIs, including documentation and all the considerations you must have.
The document provides an overview of web services and their components. It discusses Service Oriented Architecture (SOA) and how web services implement SOA. The key components of web services identified are XML-RPC, SOAP, WSDL, and UDDI. SOAP is an XML-based protocol for exchanging messages between computers. WSDL provides a standard way to describe web services. UDDI allows services to be published and discovered.
Web services allow different software applications to communicate and share resources regardless of operating system or programming language. They use XML and open protocols like HTTP and SOAP. A web service is self-contained, self-describing application component that can be accessed over the web. WSDL describes the web service so clients know how to access it, while SOAP defines the message format for communication. Visual Studio provides tools to test web services by structuring test cases and suites, managing test requests and results, and automating validation.
What is Metrology Calibration Importance, Principles, and Types.pdfVIEW
油
Metrology calibration ensures precision in measurements, maintaining quality and compliance across industries. This article explores its importance, key principles, and various types. Learn how accurate calibration enhances reliability and efficiency in manufacturing and research.
A personalized pen drive is fine as a modern corporate gift. It is a fusion of function, brand opportunity,and utility. Key chain pen drives and jump drives come in handy for different business requirements. Like t-shirts, tote bag, caps, USB drives are the perfect promotional products for enhancing corporate branding and makinga lasting impression.
Litoust India Hire Web Portal Development Company for Services.pdflitostindia7
油
In the situation where there are possibly numerous companies contending on the internet, the website having attributes like being attractive and user-friendly would distinguish it from the others. Litoust India, the most successful web development company, is famous for its outstanding services of the web portal development which has been made considering your specific needs and the achievement of the digital goals of your business.
Calculating current efficiency using EQE.pdfBrian Kim, PhD
油
We often see announcements that high EQE is achieved without defining the dominant wavelength.
However, this does not necessarily guarantee that an efficient display system is achieved.
This is because the emission wavelength must satisfy the color gamut, and the EQE does not include information on the dominant wavelength, which is directly related to the photometric power.
The following formula is designed to estimate efficiency using EQE.
3. Request
Response
What are Web Services?
A web service is a collection of open protocols and standards (http, xml, json etc.) used for
exchanging data between applications or systems through web technology.
It is required to provide interoperability.
Software applications written in various programming languages and running on various
platforms can use web services to exchange data over computer networks like the Internet in a
manner similar to inter-process communication on a single computer.
Example: you can consider an android application
interacting with a .NET app using a web service.
Web services are hosted on servers side
3
4. Characteristics of Web Services
1. Web services are XML based. They use it at its data representational layer.
2. Web services are loosely coupled. That means the consumer web services (client ) and
providers of web service (server) are not tied together directly.
3. Web services have the ability to be either Synchronous or Asynchronous. Synchronous can
be understood as binding the client to the execution of the service. On the other hand,
Asynchronous refers to allowing the client to invoke a service first and later executing the other
functions.
4. Web Services supports RPC (Remote Procedure Calls). These RPCs let the clients invoke
various functions, methods, and services on remote objects using XML.
5. There is support to Document exchange in Web Services. In fact, XML has a very generic way
to represent data as well as complex documents. Along with that, it has got various ways to
represent these documents.
4
5. Types of Web Services in Android
1. XML-RPC
It is an XML based protocol for the exchange
of data between a huge range of devices over
the Internet.
2. UDDI
UDDI stands for Universal Descriptive,
Discovery, and Integration. It is an XML- based
standard used for detailing, publishing and
discovering new web services.
3. SOAP
SOAP here stands for Simple Object Access
Protocol. It is an XML based web service protocol
used for the exchange of data or documents over
HTTP (HyperText Transfer Protocol) or
SMTP(Simple Message Transfer Protocol). It
allows the communication of independent
processes that operate on disparate systems.
4. REST
REST is Representational State Transfer. It
provides communication and connectivity
between devices and the Internet.
5
6. What is API?
API is the acronym for Application Programming Interface.
It is a software interface that allows applications to interact with each other without user intervention.
APIs provides product or service to communicate with other products and services without having to
know how they're implemented.
APIs are very adaptable and can be used on web-based systems, operating systems, database systems
and computer hardware.
APIs uses defined protocols to enable developers to build, connect and integrate applications quickly
and at scale.
6
7. Web Service vs. API
Web Service API
All web services are APIs. All APIs are not web services.
It supports XML. Responses are formatted using Web API's
MediaTypeFormatter into XML, JSON, or any
other given format.
You need a SOAP protocol to send or receive
and data over the network. Therefore it does
not have light-weight architecture.
API has a light-weight architecture.
It can be used by any client who understands
XML.
It can be used by a client who understands
JSON or XML.
Web service uses three styles: REST, SOAP, and
XML-RPC for communication.
API can be used for any style of
communication.
It provides supports only for the HTTP protocol. It provides support for the HTTP/s protocol:
URL Request/Response Headers, etc.
7
8. API Request Methods
API lets a developer make a specific call or request in order to send or receive
information.
This communication is done using a programming language called JSON.
There are four basic request methods that can be made with API:
GET Gathers information (Pulling all Coupon Codes)
PUT Updates pieces of data (Updating Product pricing)
POST Creates (Creating a new Product Category)
DELETE (Deleting a blog post)
8
9. What is JSON?
JSON stands for JavaScript Object Notation.
JSON is an open standard file format, and data interchange format, that uses human-
readable text to store and transmit data objects consisting of attribute/keyvalue pairs and
array data types.
JSON is a very light weight, structured, easy to parse and much human readable text.
It is best alternative to XML when your android app needs to interchange data with your
server.
If your app consuming XML data, you can always refer to Android XML Parsing Tutorial.
In this course, we will work on parsing JSON data format.
9
10. Components of an API Request
1. Endpoint
There are two key parts to an endpoint that
are used when making an API request:
A) URL:
It is a base url used for all API Requests.
Example: https://api.bigcommerce.com/stores/
This may look like a regular URL but if you
plug this into a web browser, you will receive a
404 error message.
B) PATH:
The path will vary depending on what you are
trying to accomplish.
You can find a list of available paths by visiting
the developer documentation of the used API.
Example: /{store_hash}/v3/catalog/products.
{store_hash} is a variable.
Complete Endpoint
https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/products
10
11. Components of an API Request Cont.
2. Header
Headers provide information to the client and server.
Example: Auth Token, Client ID, Content Type like application/json
3. Method
Methods are the actions taken when sending a request. And they are GET, PUT, POST, and
DELETE.
4. Data/Body
It is information that will be either sent to or returned by a server.
11
12. REST (RESTful) API
It stands for Representational State
Transfer.
It delivers data using the lightweight JSON
format.
Most public APIs use this because of its:
Fast performance
Dependability
Ability to scale by reusing modular
components without affecting the system as
a whole.
12
13. JSON Formats (Object, Arrary)
JSON uses two types of brackets that are as follows:
[]: To declare the elements of Array in JSON, theyre written in square brackets.
{}: To create JSON objects, the elements are written in curly brackets.
There are free online JSON parser such as:
https://jsonformatter.org/json-parser
http://json.parser.online.fr/
JSON has the following types of structures:
JSON Objects: The elements inside the curly brackets {} are known as Objects.
JSON Array: A list of values/objects in [], known as Arrays.
JSON Key-Value: This data is stored as a pair of keys and values.
13
16. Developer Tools to test API
Developing an API is the web developer responsibility.
When the Android developer receives the API, he/she should make sure of the availability of
each Requests in that API
All request of a specific API can be grouped in a Collection
Developer Tools to test API
Any web Browser
Postman
Software Download:
https://dl.pstmn.io/download/latest/win64
https://dl.pstmn.io/download/latest/win32
Chrome Extension:
https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en
Are there another tools available for testing API? List examples.
16
17. Testing API using
web browser
You need only to copy and paste the given url
on the browser.
https://api.androidhive.info/contacts/
This method more applicable for requests by
GET method
17
18. Testing API using Postman
In the main window of
Postman:
Set request method to GET
paste request url
Then press send
See result in the response
panel
18
5
7
6
4
3
1
2
8
9
19. Postman Main Window Elements:
1. New Collection: to create new API
collection. Collection contains various
requests
2. Current Collections Plate: list the used
API collections.
3. Untitled Request: create new request
tab
4. Request Method: select the request
method (GET is the default)
5. Request URL: the link of the given API
request
6. Request Query Parameters: set the
parameters if exist as key-value pair.
7. Send button: send request to server
8. Response Panel: view the retrieved
response.
9. Response details: response status,
taken time, size.
19
20. Fake API
Whenever you start working on a new project, you might need to consume an API.
But that API might not be written yet, or you dont want to hit the real thing while developing
the app.
Therefore, you can create a fake API to use it for local development, build prototypes, testing
or any other related tasks.
There are fake APIs free, and paid.
We are going to use MockAPI service to create fake API or use there demo API.
https://mockapi.io/projects
Or you can look for another fake API generator using GOOGLE. Mention them.
20
21. MockAPI.io
It offer Demo Project for free
Or register to create custom API
Free account => 1project with 4
rescources
21
22. Lets Practice
Step 1: Create Fake API
Step 2: Test the created fake API using Postman.
22