Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A collection of free public JSON APIs. #communityservice

Notifications You must be signed in to change notification settings

hitarthpathak/Free-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

18 Commits

Repository files navigation

Free-API By Hitarth Pathak

A collection of completely free, public JSON APIs.

No Authentication · No Rate Limits · No CORS · Forever Free

Available APIs :-

Name Endpoint Items Categories / Genres
E-Commerce Products https://hitarthpathak.github.io/Free-API/E-Commerce-Products.json 36 men · women · kids
Jokes https://hitarthpathak.github.io/Free-API/Jokes.json 50
Movies Collection https://hitarthpathak.github.io/Free-API/Movies-Collection.json 25 horror · comedy · mystery · sci-fi · romance

How To Use :-

E-Commerce Products :

fetch("https://hitarthpathak.github.io/Free-API/E-Commerce-Products.json")
 .then(res => res.json())
 .then(data => console.log(data));
OR
axios.get('https://hitarthpathak.github.io/Free-API/E-Commerce-Products.json')
 .then(res => console.log(res.data));

Jokes :

fetch("https://hitarthpathak.github.io/Free-API/Jokes.json")
 .then(res => res.json())
 .then(data => console.log(data));
OR
axios.get('https://hitarthpathak.github.io/Free-API/Jokes.json')
 .then(res => console.log(res.data));

Movies Collection :

fetch("https://hitarthpathak.github.io/Free-API/Movies-Collection.json")
 .then(res => res.json())
 .then(data => console.log(data));
OR
axios.get('https://hitarthpathak.github.io/Free-API/Movies-Collection.json')
 .then(res => console.log(res.data));

AltStyle によって変換されたページ (->オリジナル) /