{"id":3605,"date":"2022-10-07T17:23:03","date_gmt":"2022-10-07T12:23:03","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3605"},"modified":"2022-10-07T17:23:06","modified_gmt":"2022-10-07T12:23:06","slug":"how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/","title":{"rendered":"How to Make OMDb API Movie Info Finder Web App in JavaScript &#038; Boostrap 4"},"content":{"rendered":"\n<p>In this tutorial, you will learn how to utilize the OMDb API to build a movie info finder web app using HTML5, CSS3, JavaScript, and Bootstrap 4. The complete source code of the OMDb API movie info finder web app is given below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Source Code of OMDb API Movie Info Finder Web App in JavaScript &amp; Boostrap 4<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">index.html<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;link rel=&quot;stylesheet&quot; href=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/twitter-bootstrap\/4.1.2\/css\/bootstrap.min.css&quot;\/&gt;\n\n&lt;div class=&quot;container mt-3 text-center&quot;&gt;\n        &lt;div class=&quot;row justify-content-center&quot;&gt;\n            &lt;div class=&quot;col-md-8 col-12 content&quot;&gt;\n                &lt;h3&gt;OMDB API EXAMPLE WITH JQUERY&lt;\/h3&gt;\n                &lt;div id=&quot;search&quot;&gt;\n                    &lt;form&gt;\n                        &lt;input type=&quot;text&quot; class=&quot;search-input search border-padding&quot; placeholder=&quot;Enter name of the movie&quot;&gt;\n                    &lt;\/form&gt;\n                    &lt;div id=&quot;result-list&quot; class=&quot;border-padding mb-3&quot;&gt;\n                        &lt;div id=&quot;results&quot;&gt;&lt;\/div&gt;\n                        &lt;div id=&quot;result-footer&quot; class=&quot;pt-4 mt-2&quot;&gt;&lt;a href=&quot;#&quot; id=&quot;show-more&quot;&gt;SHOW MORE \u00bb&lt;\/a&gt;&lt;\/div&gt;\n                    &lt;\/div&gt;\n                &lt;\/div&gt;\n            &lt;\/div&gt;\n            &lt;div id=&quot;list&quot; class=&quot;col-md-12&quot;&gt;\n                &lt;div class=&quot;row justify-content-center&quot;&gt;\n                    &lt;div class=&quot;col-md-8 list-header&quot;&gt;\n                      &lt;div class=&quot;text-center&quot;&gt;&lt;button id=&quot;searchAgain&quot; class=&quot;btn btn-primary&quot;&gt;Search Again&lt;\/button&gt;&lt;\/div&gt;\n                        &lt;div class=&quot;d-flex justify-content-between p-3&quot;&gt;\n                            &lt;div id=&quot;search-term&quot;&gt;&lt;\/div&gt;\n                            &lt;div id=&quot;list-count&quot;&gt;&lt;\/div&gt;\n                        &lt;\/div&gt;\n                    &lt;\/div&gt;\n                &lt;\/div&gt;\n                &lt;div class=&quot;row&quot;&gt;\n                    &lt;div class=&quot;row m-3&quot; id=&quot;list-results&quot;&gt;&lt;\/div&gt;\n                &lt;\/div&gt;\n            &lt;\/div&gt;\n        &lt;\/div&gt;\n    &lt;\/div&gt;\n&lt;script src=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/3.3.1\/jquery.min.js&quot;&gt;&lt;\/script&gt;\n&lt;script src=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/twitter-bootstrap\/4.1.2\/css\/bootstrap.min.css&quot;&gt;&lt;\/script&gt;<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">style.css<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">html, body { \n    background-color: #F7F9FD;\n}\n.border-padding {\n    border: 1px solid #F1EEF2;\n    -webkit-border-radius: 10px;\n    -moz-border-radius: 10px;\n    border-radius: 10px;\n    padding: 20px;\n}\n.search-input {\n    width: 100%;\n    height: 55px;\n    padding-right: 60px;\n}\n\n.search {\n    background: url(search.png) no-repeat center right 20px #fff;\n}\n\n.arrow {\n    background: url(arrow.png) no-repeat center right 20px #fff;\n}\n\n#result-list {\n    background: #fff;\n    position: relative;\n    top: 12px;\n}\n\n#result-footer {\n  border-top: 2px solid #F1EEF2;\n  margin: auto -20px;\n}\n\n#result-list:after, \n#result-list:before {\n    bottom: 100%;\n    border: solid transparent;\n    content: &quot; &quot;;\n    height: 0;\n    width: 0;\n    position: absolute;\n    pointer-events: none;\n}\n\n#result-list:after {\n    border-color: rgba(255, 255, 255, 0);\n    border-bottom-color: #ffffff;\n    border-width: 19px;\n    left: 20%;\n    margin-left: -19px;\n}\n#result-list:before {\n    border-color: rgba(113, 158, 206, 0);\n    border-bottom-color: #F1EEF2;\n    border-width: 20px;\n    left: 20%;\n    margin-left: -20px;\n}\n\n.list-header {\n    border-bottom: 1px solid #5883FF;\n    color: #5883FF;\n    #list-count {\n        color: #9B9B9B;\n    }\n}\n.rating-div {\n    color: #9B9B9B;\n    .rating {\n        color: #5883FF;\n    }\n}\n\n.movie-title {\n    font-size: 1.2rem;\n}<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">script.js<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">$(document).ready(function() {\n\n    function highlight(word, query) {\n        let check = new RegExp(query, &quot;ig&quot;)\n        return word.toString().replace(check, function(matchedText) {\n            return &quot;&lt;u style='background-color: yellow'&gt;&quot; + matchedText + &quot;&lt;\/u&gt;&quot;\n        })\n    }\n\n    $(&quot;#result-list&quot;).hide()\n    $(&quot;#list&quot;).hide()\n\n    $(&quot;.search-input&quot;).keyup(function() {\n        let search = $(this).val()\n        let results = &quot;&quot;\n        if (search == &quot;&quot;) {\n            $(&quot;#result-list&quot;).hide()\n            $(&quot;.search-input&quot;).removeClass(&quot;arrow&quot;).addClass(&quot;search&quot;)\n        } else {\n            $(&quot;.search-input&quot;).removeClass(&quot;search&quot;).addClass(&quot;arrow&quot;)\n        }\n\n        $.getJSON(&quot;https:\/\/www.omdbapi.com\/?&quot;, { apikey: &quot;fd161998&quot;, s: search }, function(data) {\n            if (data.Search !== undefined) {\n                $.each(data.Search, function(index, value) {\n                    if (index &lt; 2) {\n                        $.getJSON(&quot;https:\/\/www.omdbapi.com\/?&quot;, { apikey: &quot;fd161998&quot;, i: value.imdbID }, function(movieData) {\n                            if (movieData) {\n                                results += '&lt;div class=&quot;result row p-1&quot;&gt;'\n                                results += '&lt;div class=&quot;col-sm-5&quot;&gt;&lt;img src=' + movieData.Poster + ' style=&quot;width: 170px; height: 250px;&quot; \/&gt;&lt;\/div&gt;'\n                                results += '&lt;div class=&quot;col-sm-7 text-left&quot;&gt;'\n                                results += '&lt;div class=&quot;movie-title&quot;&gt;'+ highlight(movieData.Title, $(&quot;.search-input&quot;).val()) +' ('+ movieData.Year +')&lt;\/div&gt;'\n                                results += '&lt;div class=&quot;rating-div&quot;&gt;&lt;span class=&quot;h4 rating&quot;&gt;'+ movieData.imdbRating +'&lt;\/span&gt;\/10&lt;\/div&gt;'\n                                results += '&lt;div class=&quot;my-3&quot;&gt;'\n                                results += '&lt;div&gt;Language: '+ movieData.Language + '&lt;\/div&gt;'\n                                results += '&lt;div&gt;Stars: '+ movieData.Actors.split(&quot;,&quot;).slice(0, 3) + ' | &lt;a href=&quot;#&quot;&gt;Show All \u00bb&lt;\/a&gt;&lt;\/div&gt;'\n                                results += '&lt;\/div&gt;'\n                                results += '&lt;div class=&quot;my-3&quot;&gt;'\n                                results += '&lt;div&gt;'+ movieData.Plot.slice(0, 100) + '... &lt;a href=&quot;#&quot;&gt;Details \u00bb&lt;\/a&gt;&lt;\/div&gt;'\n                                results += '&lt;\/div&gt;'\n                                results += '&lt;\/div&gt;'\n                                results += &quot;&lt;\/div&gt;&quot;\n                                $(&quot;#results&quot;).html(results)\n                                \n                                if (\/Mobi|Android\/i.test(navigator.userAgent)) {\n                                    $(&quot;#results&quot;).children(&quot;.result&quot;).eq(1).hide();\n                                } else {\n                                    $(&quot;.result&quot;).first().after(&quot;&lt;hr&gt;&quot;)\n                                }\n                            }\n                        })\n                    }\n                });\n                $(&quot;#result-list&quot;).show()\n            }\n        });\n    });\n    \n    $(&quot;#show-more&quot;).click(function(e) {\n        e.preventDefault()\n        var search = $(&quot;.search-input&quot;).val()\n        let listResults = &quot;&quot;\n        $(&quot;#search&quot;).hide()\n        $(&quot;#list&quot;).show()\n        $(&quot;#search-term&quot;).html(&quot;Results for: &quot; + search)\n        $.getJSON(&quot;https:\/\/www.omdbapi.com\/?&quot;, { apikey: &quot;fd161998&quot;, s: search }, function(listData) {\n            if (\/Mobi|Android\/i.test(navigator.userAgent)) {\n                $(&quot;#list-count&quot;).html(&quot;(&quot; + listData.totalResults + &quot;)&quot;)\n            } else {\n                $(&quot;#list-count&quot;).html(listData.totalResults + &quot; movie found&quot;)\n            }\n            if (listData.Search !== undefined) {\n                $.each(listData.Search, function(index, value) {\n                    $.getJSON(&quot;https:\/\/www.omdbapi.com\/?&quot;, { apikey: &quot;fd161998&quot;, i: value.imdbID }, function(listMovieData) {\n                        if (listMovieData) {\n                            listResults += '&lt;div class=&quot;list-result col-6 p-3&quot;&gt;'\n                            listResults += '&lt;div class=&quot;row&quot;&gt;'\n                            listResults += '&lt;div class=&quot;col-md-6&quot;&gt;&lt;img src=&quot;' + listMovieData.Poster + '&quot; style=&quot;width: 100%;&quot; \/&gt;&lt;\/div&gt;'\n                            listResults += '&lt;div class=&quot;col-md-6 text-left&quot;&gt;'\n                            listResults += '&lt;div class=&quot;movie-title&quot;&gt;'+ highlight(listMovieData.Title, $(&quot;.search-input&quot;).val()) +' ('+ listMovieData.Year +')&lt;\/div&gt;'\n                            listResults += '&lt;div class=&quot;rating-div&quot;&gt;&lt;span class=&quot;h4 rating&quot;&gt;'+ listMovieData.imdbRating +'&lt;\/span&gt;\/10&lt;\/div&gt;'\n                            listResults += '&lt;div class=&quot;my-3&quot;&gt;'\n                            listResults += '&lt;div&gt;Language: '+ listMovieData.Language + '&lt;\/div&gt;'\n                            listResults += '&lt;div&gt;Stars: '+ listMovieData.Actors.split(&quot;,&quot;).slice(0, 3) + ' | &lt;a href=&quot;#&quot;&gt;Show All \u00bb&lt;\/a&gt;&lt;\/div&gt;'\n                            listResults += '&lt;\/div&gt;'\n                            listResults += '&lt;div class=&quot;my-3&quot;&gt;'\n                            listResults += '&lt;div&gt;'+ listMovieData.Plot.slice(0, 100) + '... &lt;a href=&quot;#&quot;&gt;Details \u00bb&lt;\/a&gt;&lt;\/div&gt;'\n                            listResults += '&lt;\/div&gt;'\n                            listResults += '&lt;\/div&gt;' \/\/ col-6 end\n                            listResults += &quot;&lt;\/div&gt;&quot; \/\/ row end\n                            listResults += &quot;&lt;\/div&gt;&quot; \/\/ list-result col-6 end\n                            $(&quot;#list-results&quot;).html(listResults)\n                            $(&quot;.list-result:odd:not(:last-child)&quot;).after(&quot;&lt;div class='col-12'&gt;&lt;hr&gt;&lt;\/div&gt;&quot;)\n                        }\n                    })\n                });\n            }\n        });\n    });\n\n    $(&quot;#searchAgain&quot;).click(function() {\n        $(&quot;#search&quot;).show()\n        $(&quot;#list&quot;).hide()\n        $(&quot;#result-list&quot;).hide()\n        $(&quot;.search-input&quot;).val(&quot;&quot;)\n    });\n});<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you will learn how to utilize the OMDb API to build a movie info finder web app using HTML5, CSS3, JavaScript, and Bootstrap 4. The complete source code of the OMDb API movie info finder web app is given below. Source Code of OMDb API Movie Info Finder Web App in JavaScript &#8230; <a title=\"How to Make OMDb API Movie Info Finder Web App in JavaScript &#038; Boostrap 4\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/\" aria-label=\"Read more about How to Make OMDb API Movie Info Finder Web App in JavaScript &#038; Boostrap 4\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3605","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Make OMDb API Movie Info Finder Web App in JavaScript &amp; Boostrap 4<\/title>\n<meta name=\"description\" content=\"In this tutorial, you will learn how to utilize the OMDb API to build a movie info finder web app using HTML5, CSS3, JavaScript, and Bootstrap 4. The\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Make OMDb API Movie Info Finder Web App in JavaScript &amp; Boostrap 4\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, you will learn how to utilize the OMDb API to build a movie info finder web app using HTML5, CSS3, JavaScript, and Bootstrap 4. The\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-07T12:23:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-07T12:23:06+00:00\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Make OMDb API Movie Info Finder Web App in JavaScript & Boostrap 4","description":"In this tutorial, you will learn how to utilize the OMDb API to build a movie info finder web app using HTML5, CSS3, JavaScript, and Bootstrap 4. The","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/","og_locale":"en_US","og_type":"article","og_title":"How to Make OMDb API Movie Info Finder Web App in JavaScript & Boostrap 4","og_description":"In this tutorial, you will learn how to utilize the OMDb API to build a movie info finder web app using HTML5, CSS3, JavaScript, and Bootstrap 4. The","og_url":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-10-07T12:23:03+00:00","article_modified_time":"2022-10-07T12:23:06+00:00","author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"How to Make OMDb API Movie Info Finder Web App in JavaScript &#038; Boostrap 4","datePublished":"2022-10-07T12:23:03+00:00","dateModified":"2022-10-07T12:23:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/"},"wordCount":75,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/","url":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/","name":"How to Make OMDb API Movie Info Finder Web App in JavaScript & Boostrap 4","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-10-07T12:23:03+00:00","dateModified":"2022-10-07T12:23:06+00:00","description":"In this tutorial, you will learn how to utilize the OMDb API to build a movie info finder web app using HTML5, CSS3, JavaScript, and Bootstrap 4. The","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-omdb-api-movie-info-finder-web-app-in-javascript-boostrap4\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Make OMDb API Movie Info Finder Web App in JavaScript &#038; Boostrap 4"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3605","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=3605"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3605\/revisions"}],"predecessor-version":[{"id":3606,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3605\/revisions\/3606"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3605"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3605"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}