Fetch Home Feeds
Example code is provided for both JavaScript , along with a response schema.
Route Schema (URL)
https://api.pewds.vercel.app/bikroy/home/Request Samples
import axios from "axios";
// Example request using no paramters
const url = "https://api.pewds.vercel.app/bikroy/home/";
const data = async () => {
try {
const { data } = await axios.get(url);
return data;
} catch (err) {
throw new Error(err.message);
}
};
console.log(data);Response Schema
MIME Type: application/json
[
{
"total": string,
"items": [
{
},
{
}
]
}
]