diff --git a/package.json b/package.json
index b4f5a11d25..8f6bbd9d98 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "habitrpg",
+ "name": "habitica",
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
"version": "3.0.0",
"main": "./website/server/index.js",
diff --git a/website/views/shared/footer.jade b/website/views/shared/footer.jade
index 6246f09cc8..636f2f2ed2 100644
--- a/website/views/shared/footer.jade
+++ b/website/views/shared/footer.jade
@@ -48,7 +48,9 @@ footer.footer(ng-controller='FooterCtrl')
li
a(target='_blank', href='https://trello.com/c/odmhIqyW/440-read-first-table-of-contents')=env.t('communityFeature')
li
- a(target='_blank', href='https://habitica.com/static/api')=env.t('API')
+ a(target='_blank', href='/apidoc')=env.t('API v3')
+ li
+ a(target='_blank', href='/static/api-v2')=env.t('API v2 - Deprecated')
li
a(href='http://habitica.wikia.com/wiki/App_and_Extension_Integrations', target='_blank')=env.t('communityExtensions')
li
diff --git a/website/views/static/api-v2.jade b/website/views/static/api-v2.jade
index cf290cc0f8..c6e5c034f0 100644
--- a/website/views/static/api-v2.jade
+++ b/website/views/static/api-v2.jade
@@ -75,6 +75,10 @@ html
//.input
a#explore(href='#') Explore
br
+ h2 API v3
+ p This page contains documentation for version 2 of Habitica's API. A new API version, the third, has been released and its documentation can be found here and an introductory blog post with the most important changes here.
+ p API v2 is still available to give time to developers to port their apps and integration to the new API but it's considered deprecated and should not be used for new projects. It'll be completely retired shortly.
+ br
h2 Two API Types
p Habitica's API is meant for two different audiences: (1) extensions and scripts, and (2) full-fledged applications. Extensions and scripts can utilize Habitica's up/down scoring for individual tasks. An example of this in action is the Chrome Extension, which up-scores you for visiting productive websites, and down-scores you for visiting procrastination websites. Other examples currently in use are Pomodoro, Anki, and Github scripts - which up-score you for good behavior and downscore you for bad behavior - see the list. The second API consumer is for full-fledge applications, which need read / write access to the entire user document. An example of this would be Mobile Apps or Desktop application.
h2 Extensions / Scripts