diff --git a/sdk/src/search.js b/sdk/src/search.js
new file mode 100644
index 00000000..060d9c2e
--- /dev/null
+++ b/sdk/src/search.js
@@ -0,0 +1,17 @@
+const fetch = require("node-fetch"); 
+const xmltojson = require("xml2json")
+const url = require("../config.json")
+
+class Search{
+  static async SearchVideo(query){
+    const search = await fetch(`https://lighttube.herokuapp.com/api/search?query=${query}`)
+    const text =  await search.text()
+   const j = JSON.parse(xmltojson.toJson(text));
+     for (item of j.Search.Results.Video)  {
+       const videoid = item;
+       return item;
+    }
+  }
+}
+
+module.exports = Search