December 30, 2024
1 min read

Fetch data from API is very simple in js. let’s begin the coding of js fetch post API data.

We will use JSONPlaceholder – Free Fake REST API (typicode.com)

1s we need have a markup with HTML like below

Markup for API data
<div role="status" id="loading">
    <div class="spinner-border">
        loading...
    </div>
</div>
<div class="post_area" id="posts"></div>

Now comes the main part of Javascript code to fetch api data. on API URL use your own API. in the loop your API maybe not provide data in the main variable. use console.log(list) to understand the data structure. You may need to use list.data or something else.

JS api fetching code
// api url
const api_url = "https://jsonplaceholder.typicode.com/users/1/posts";

// Defining async function
async function getapi(url) {
// Storing response
const response = await fetch(url);

// Storing data in form of JSON
var data = await response.json();
//   console.log(data);
if (response) {
    hideloader();
}
show(data);
}
// Calling that async function
getapi(api_url);

// Function to hide the loader
function hideloader() {
document.getElementById("loading").style.display = "none";
}
// Function to define innerHTML for HTML table
function show(list) {
let single_post = "";
// Loop to access all item
for (let n of list) {
    single_post += `<div class="single_post">
    <h4>${n.title}</h4>
    <p>${n.body}</p>
    </div>`;
}
// Setting innerHTML to push data inside posts div
document.getElementById("posts").innerHTML = single_post;
}
JS fetch post July 26, 2021

Ok now put css as you like and enjoy 😉

Leave a Reply

Your email address will not be published. Required fields are marked *

Elementor text editor Typography Issue [solution]

Elementor text editor Typography Issue [solution] Font size, color, line height issue fixed

WordPress Post Approval Email Notification

Learn how to create a WordPress email notification system for post approvals. Customize email templates, support multiple post types, and improve user engagement with this developer-friendly guide.

ACF

Easy ACF repeater Bootstrap accordion in WordPress

FAQ collapse design with ACF repeater Bootstrap accordion

Allow Only Business Email Addresses in the Email Field of Elementor Forms

Find out how to restrict email fields in Elementor forms to business emails only. Improve form data quality by blocking free email domains like Gmail and Yahoo.

Web Development Project in mind?

if you looking for a web developer for paid contribution to your project I am available for work.

Mukto
Mukto

Click the button below to chat with me.