12 Guides

http-requests

API Docs for REST

REST API documentation provides a clear and structured explanation of how to use the API, including its endpoints, parameters, and responses.

How to use Fetch API with React Native?

Fetch API is a built-in web API in React Native that allows you to make network requests to fetch resources from a server using promises, making it easy to handle data.

How to make DELETE requests with Axios?

In this guide we will learn how to use Axios, a popular JavaScript library, to make DELETE requests and manage resources on web servers.

How to use Axios with Angular?

In this guide, you'll learn how to use Axios with Angular to send HTTP requests, handle responses, and create Angular services to handle Axios requests.

How to Use Axios for HTTP PUT and PATCH Requests?

Axios is a simple and popular JavaScript library for making HTTP requests, including PUT and PATCH requests for updating resources on a server.

A brief introduction to Axios

Axios is a popular library for making HTTP requests and handling responses in web applications. It has a simple API and many useful features.

How to use Axios with Vue.js?

Learn how to use Axios with Vue.js to create modern web apps that use real-world data. Install, import, and test Axios in your Vue.js project.

Cross-Origin Requests with Fetch API

In this guide, we will learn to handle Cross-Origin Requests with Fetch API and consume APIs from different sources securely

How to use fetch API to call GraphQL APIs?

The Fetch API can be used to call GraphQL APIs by making a POST request with the GraphQL query as the request body, and handling the response accordingly.

How to use the Fetch API with React?

In this guide, we will explore how to use the Fetch API with React to fetch data from a remote server and display it in a React component.

How to send query parameters using Fetch?

In this guide, we will learn how to send query parameters using Fetch API. This allows us to filter and search through data without unnecessary server requests

Axios vs. Fetch: What to use for Making HTTP Requests?

Getting data from APIs is a fundamental operation of any web application. Both Fetch and Axios are widely used for making HTTP requests to APIs. Let's see how they differ and how we can use them.