Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

9 total results found

What is API ?

React fetching the data Fetching with API in React

API (Application Programming Interface) API stands for Application Programming Interface, it's a set of defined rules that acts as an intermediary layer that enables the exchange of information and functionality between different systems, such as between a ...

React Fetching

React fetching the data Fetching with API in React

In this course for the data, we have used is the API endpoint from https://reqres.in/api/users Fetch method The fetch() is a method in JavaScript is used to request to the server and load the information in the webpages. The request can be of any APIs th...

RESTful API

React fetching the data

REST (Representational State Transfer) What is RESTful API? RESTful API is an interface design based on REST architecture that enable two computer systems exchange information securely over the internet either used to fetch or give some information from a ...

Deck of Cards API

React fetching the data Public APIs

Shuffle the Cards: Add deck_count as a GET or POST parameter to define the number of Decks you want to use. Blackjack typically uses 6 decks. The default is 1. Draw a Card: The count variable defines how many cards to draw from the deck. Be sure to replac...

Free Dictionary API

React fetching the data Public APIs

Search word definition and some other details. with this request format it would provide many word's details such: word - how word spell phonetic - how to pronounce word according to the phonetic principle origin - source or beginning of this word partO...

Fetching via Axios

React fetching the data

Axios Axios package is a Javascript library not API. Axios use promise-based HTTP client designed for Node.js and browsers. so, we can easily send asynchronous HTTP requests to REST APIs and perform create, read, update and delete operations (CRUD). It is an ...

API Exercise

React fetching the data

Instruction In this exercise we would create web application to provide information about Food Dish by using MealDB API. By this page we have receive only 1 input with 1 button. Input: Dish name Button: Search A web application should provide user fol...

HTTP & HTTP request

React fetching the data

HTTP (Hypertext Transfer Protocol) HTTP is a protocol for fetching resources such as HTML documents. It is the foundation of any data exchange on the Web, and it is a client-server protocol. In HTTP there are four methods that are commonly used in a REST-base...

Fetching base on input

React fetching the data

Mange API with state Now we will use state in react to help on manage with the API. with endpoint https://reqres.in/api/users we could get different response by passing parameter "page", so now we would use button to change the state and then use state on se...