diff --git a/localq/localq/views.py b/localq/localq/views.py
index 88d62f6c41721b4da8fd864f11315a39c3af7b99..7c3d1221bb10bd689722157cdf87c1e22354a32e 100644
--- a/localq/localq/views.py
+++ b/localq/localq/views.py
@@ -1,5 +1,41 @@
+from flask import jsonify
 from localq import app
 
 @app.route('/')
 def index():
     return 'Hello world!'
+
+@app.route('/route')
+def lgthinq_route():
+    return jsonify({
+        'result': {
+            'apiServer': 'https://aic-common.lgthinq.com:443',
+            'mqttServer': 'ssl://a3phael99lf879.iot.us-west-2.amazonaws:8883',
+        },
+        'resultCode': '0000'
+    })
+
+
+@app.route('/route/certificate')
+def lgthinq_certificate_list():
+    lgthinq_ssl_root = '' # TODO: Our root here.
+    if request.args.get('name'):
+        return jsonify({
+            'result': {
+                'certificatePem': lgthinq_ssl_root,
+            },
+            'resultCode': '0000'
+        })
+    else:
+        return jsonify({
+            'result': [
+                'common-server',
+                'aws-iot',
+            ],
+            'resultCode': '0000'
+        })
+
+@app.route('/', defaults={'path': ''})
+@app.route('/<path:path>')
+def catchall(path):
+    print('hello')