LogoLogo
  • Welcome
  • WHITEPAPER
    • GAMEE Ecosystem
    • GMEE Token
      • Allocation & Release schedule
      • Listed exchanges
    • WATCoin
      • Allocation & Release Schedule
      • WatPaper
      • WAT Roadmap
    • GAMEE on Telegram
    • Free-to-play games
    • Arc8 App
      • Beasts
      • G-Bots
    • Roadmap
  • COMPANY
    • About
    • Team
    • Advisors
  • Partner with GAMEE
    • Tasks, Rewards & API Integration
  • Community
    • Social Media
    • Support
  • TOKENOMICS FAQs
    • GAMEE Token
    • Wat Protocol & WatPoints
      • Telegram WatPoint Mining
      • Bitget: How to Find Deposit Address & UID
    • Gnosis/Multi-Signature Transactions
  • Gameplay FAQs
    • Moon Cards
      • Collection Challenges
    • Arc8 App
      • Arc8 GameFest
      • Arc8 League
      • Battles and Streaks
      • Beasts & Food
      • Currencies and Items
      • Fair Play Rules
      • Friend Invitations
      • Geo Location
      • KYC Process
      • Leagues
      • Luck, Mining and Lucky Events
      • Reward Packs and Piggy Bank
      • Scoring System of Games
        • Cranky Monkey
        • Karate Kido
        • Run!
        • Cool Cats Combinations
        • Qube 2048
        • 99 Blocks
        • Pixel Dungeon
        • Energy Wars
        • Globo Run
        • Dark Lords
        • Tube Runner
        • Solitaire Star
        • Samurai Hold'Em
        • Asteroids!
        • Pirate Solitaire
        • Marble Dash
        • Wizards 21
        • Hexonix
      • Seasons and Premium Pass
      • Solving problems
      • Tokens
      • Token Takeovers and Partner Events
      • Wallets
    • Prizes App
      • How to play
      • Profile and Verification
      • Tickets
      • Earning Money
      • Withdrawing Money
      • GMEE Vouchers
      • Referrals
      • Shop
      • Solving Problems
    • Cash Apps
      • How to Play Treasure Solitaire
      • How to Play Tropical Crush
      • How to Play Monkey Match
      • Profile and Verification
      • Tickets
      • Lives
      • Earning Money
      • Withdrawing Money
      • Friend Referrals
      • Shop
      • Solving Problems
    • GAMEE Telegram
Powered by GitBook
On this page
  • The GAMEE Application
  • Types of Tasks
  • User Rewards:
  • Implementing the GAMEE API
  • The Task Flow
  • Technical Implementation
  • Header Example
  • Responses:
  • List of Error States:
  • Example Calls:
  • Ready to collaborate?

Was this helpful?

  1. Partner with GAMEE

Tasks, Rewards & API Integration

Information for marketers and developers on tasks, user engagement, and implementation of the GAMEE API

PreviousPartner with GAMEENextSocial Media

Last updated 3 months ago

Was this helpful?

When advertising your product or project with GAMEE, you will work closely with GAMEE's Head of Partnerships to help achieve your KPI goals and smoothly onboard your company's project tasks into our Telegram application.

Advertisers can benefit from incorporating an almost limitless number of task types into the GAMEE application, which are designed to encourage user engagement with carefully selected rewards.

to read more about partnering with GAMEE.

The GAMEE Application

In this section of the app, users come to engage with tasks from GAMEE and our partners in order to discover interesting projects and to receive rewards for their engagement.

In addition, tasks may be further boosted by being sent directly to users in GAMEE's communication channels.

Types of Tasks

There are effectively no limit for tasks that you can choose; as long as the task completion is trackable and is in line with your KPI goals, it can be implemented. You may also opt to feature more than one task in the GAMEE application. Note that more challenging or time-consuming tasks for users are typically rewarded with more rewards in our app, to further encourage completion.

Typical tasks include (but are not limited to):

  • Join a partner community

  • Play a partner game

  • Achieve a specified outcome in a partner app (points, winning a series of games, etc.)

  • Create an account on a partner website or application

  • Deposit a specified amount in a partner website or application

  • Follow social media channels

  • Refer a specified number of other users

User Rewards:

Rewards we offer depend on what events and products are currently featured in the app, and will be selected by our development team to attain maximum engagement.

At different times throughout the year, certain in-app soft currencies are more beneficial to users and that is reflected in the rewards we offer. For instance, they may be:

  • Tickets – Tickets can be used in the GAMEE application to enter draws with monetary prize pools, boost mining rates, and attain other improvements and advantages to the user experience.

  • Blue Coins – Similar to Tickets, Blue Coins can be used to improve aspects of the user experience.

  • Spins – When a cash Wheel of Fortune is active, spins allow the users to spin the wheel with the chance of winning monetary rewards, alongside other soft currencies.

From the partner's side, any additional rewards you may opt to provide can be beneficial, but they are not a requirement. You may offer bonuses, whitelist access or other rewards when a user completes your task, in addition to the rewards that GAMEE provides.

Implementing the GAMEE API

In order to track completed user actions, you will need to integrate the GAMEE API and link it to your task action, which his how we track task completion and rewards. The link to this will be provided to you during the discussion phase.

The Task Flow

The flow takes place over three stages:

1. The user is able to see the task in the application's task list. The task shows:

  • Small thumbnail image

  • Task title

  • Task description

  • Reward for completion

2. When a user clicks on the task, they are directed to an URL of your choosing. In the URL parameters, we pass the user's Telegram user ID. After that, it is down to the partner company to save this information and track user progress.

3. When a user completes the task, the partner will call our API, the task will be marked as completed, and then the reward will be delivered to the user.

Technical Implementation

You will be sent unique GAMEE API parameters during your discussions with GAMEE, and can then use the following guides to help you integrate the GAMEE API into your product:

Each task has 7 parameters:

Parameter
Example
Details

Task ID

201

Every Telegram task has its own unique ID number

Icon

A brand logo

Name

Follow MrCrypto on X!

Call to action for the task

Description

Join the crypto revolution!

Additional details

URL with specified UserID

https://example.com/?uid={telegramUserId}

Telegram UserID will be replaced by actual UserID.

Authentication token

mrcrypto

The authentication token is partner-specific and must be passed in the request header

Reward

1000 Tickets

Reward user gets upon task completion

Header Example

Example header with partner authentication token, task ID and user's Telegram UserID.

Authentication token: mrcrypto

Task ID: 201

Telegram UserID: 1234567

curl -X GET -k -H 'Auth: mrcrypto' -i 'https://GAMEE-API-HERE.com/taskApi.php?taskId=201&telegramUserId=1234567

Responses:

Success response: {"status":"ok"}

Error response: 1 error: {code: int, message: string}

List of Error States:

Code
Message

999

Invalid type parameters

999

Invalid Auth Header

-32001

Telegram Task not found

-32001

Telegram User not found

-32001

Invalid telegram user

999

Task completion failed

Example Calls:

taskID
auth
response
curl

201

mrcrypto

{"status":"o k"}

curl -X GET -k -H 'Auth: mrcrypto' -i 'https://api.GAMEE-API-HERE.com/taskApi.php?taskId=201&telegramUserId=1234567'

201

mrcrypto

{"error": {"code":-32 001,"mess age":"Tele gram user not found"}}

curl -X GET -k -H 'Auth: mrcrypto' -i 'https://api.GAMEE-API-HERE.com/taskApi.php?taskId=201&telegramUserId=157'

Ready to collaborate?

Tasks that you select will appear in the "Tasks to Do" list in the , and can be further promoted with accompanying copy and images in our community channels.

At GAMEE's end, rewards are sent when we receive confirmation via the API that the user has completed the required action or actions. The user receives an automated notification via the that their reward is waiting, and they can then claim it.

Please fill in this and we will respond as soon as possible.

GAMEE app
GAMEE bot
Instructions for implementing API
FAQ on implementing API
contact form
Click here
The user experience: how your tasks may appear in the application