-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (21 loc) · 967 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Free IMDB Image API</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.1.4/tailwind.min.css" />
</head>
<body class="max-w-md mx-auto font-mono bg-gray-300 h-screen flex items-center justify-center m-5">
<div>
<p>Free IMDB Image API [ only supports with imdb media gallery urls]</p><br><br>
<p>API Endpoint : https://imdb-image-api.vercel.app/api/?file=https://www.imdb.com/title/tt10701074/mediaviewer/rm3006207233</p><br>
</div>
<script>
fetch('https://imdb-image-api.vercel.app/api/?file=https://www.imdb.com/title/tt10701074/mediaviewer/rm3006207233')
.then((response) => response.json())
.then((data) => console.log(data));
</script>
</body>
</html>