Authentication

In order to make authorized calls to Habitify APIs, you must obtain your API Key from client-app(mobile app, web-app). This page describes the different ways of obtaining an API Key.

API Key is required for every resource.

1. Obtaining API Key

From Mobile Apps(iOS, Android)

  1. Open Settings

  2. Open API Credential

  3. Copy API Key or send to your desktop by tapping Send Via...

From Web App

  1. Open API Credential by navigating to Profile & Settings > API Credential

  2. Copy API Key

2. Using API Key

All requests must include an HTTP Header field Authorization with value is the API Key.

Example HTTP Request
$ curl "https://api.habitify.me/habits" \
    -H "Authorization: {API_KEY}" \

Last updated