TagMangoTagMango Docs

Introduction

TagMango APIs are a collection of extensive RESTful APIs made to give partners and outside developers safe access to TagMango's main platform functionalities. By integrating with TagMango's creative economy platform, external apps can access essential features like messaging, gamification, course content, and subscriptions.

Getting Started

  1. Obtain your API key from TagMango.
  2. Include required headers in all requests — x-whitelabel-host is required for all requests.
  3. Test endpoints using your API key.

Authentication & Headers

  • Authorization: Bearer <your-api-key>
  • x-whitelabel-host: Your whitelabel dashboard domain (e.g., yourhost.tagmango.com)
  • x-timezone-offset: Timezone offset in minutes (e.g., 330 for IST)

Timezone Offset

x-timezone-offset header is optional. If not provided, the server will use the default timezone of the server. It's in minutes.

Response Format

All responses follow a consistent JSON structure:

{
  "message": "Operation completed successfully",
  "success": true,
  "result": "<Response data here>",
  "code": 200,
  "statusMessage": "OK"
}

Base URL

https://api-prod-new.tagmango.com

On this page