Authentication

Login from Hanime.tv by requesting /api/v8/session with the fake session token.

Update

💡

UPDATE : All auth routes can no longer using GET query and all of them must be POST.

/auth/login

To login to your account, you need to POST json body request :

{
"email": "YOUR_HANIME_EMAIL",
"password": "YOUR_HANIME_PASSWORD"
}

/auth/login/summary

To get summary information of your account, you need to POST json body request :

{
"email": "YOUR_HANIME_EMAIL",
"password": "YOUR_HANIME_PASSWORD"
}
{
"all_video_views": 147,
"avatar": "https://static-assets-44d.pages.dev/images/default-avatars/58.png",
"coin": 29734,
"email": "example@mail.com",
"id": 10000,
"name": "username",
"premium_status": "Active",
"slug": "username-0000"
}

/auth/getcoins

⚠️

This API CANNOT give you unlimited coins. Hanime server API only allowed 1 per 3 hours each request. !!!

To get a coins from Hanime without installing app or clicking ads, send a POST json body request :

{
"email": "YOUR_HANIME_EMAIL",
"password": "YOUR_HANIME_PASSWORD"
}
{
"rewarded_amount": XXX,
"message" : "You have successfully collected your coins"
}

/auth/login/getsession

DEPRECATED