This project provides an API for fetching various analytics and data related to heroes in the game Mobile Legends: Bang Bang (MLBB). The API includes endpoints for hero rankings, positions, details, skill combinations, ratings, relationships, counter information, and compatibility.
- Endpoints
- Setup
- Usage
- License
The base URL for all endpoints is https://api-mobilelegends.vercel.app
.
https://api-mobilelegends.vercel.app
Endpoint: GET /hero-rank/
Description: Fetch hero rankings based on various parameters such as days, rank, page size, page index, and sorting options.
Query Parameters:
days
(optional): Number of days for which the data is to be fetched. Possible values:1
,3
,7
,15
,30
. Default:1
.rank
(optional): Rank category for filtering the data. Possible values:all
,epic
,legend
,mythic
,honor
,glory
. Default:all
.size
(optional): Number of records per page. Default:20
.index
(optional): Page index for pagination. Default:1
.sort_field
(optional): Field by which the data should be sorted. Possible values:pick_rate
,ban_rate
,win_rate
. Default:win_rate
.sort_order
(optional): Order of sorting. Possible values:asc
,desc
. Default:desc
.
Example Request:
GET /hero-rank/?days=7&rank=mythic&size=10&index=2&sort_field=pick_rate&sort_order=asc
Endpoint: GET /hero-position/
Description: Fetch hero positions based on various parameters such as role, lane, page size, and page index.
Query Parameters:
role
(optional): Role category for filtering the data. Possible values:all
,tank
,fighter
,ass
,mage
,mm
,supp
. Default:all
.lane
(optional): Lane category for filtering the data. Possible values:all
,exp
,mid
,roam
,jungle
,gold
. Default:all
.size
(optional): Number of records per page. Default:21
.index
(optional): Page index for pagination. Default:1
.
Example Request:
GET /hero-position/?role=tank&lane=mid&size=10&index=2
Endpoint: GET /hero-detail/<int:hero_id>/
Description: Display details of a specific hero identified by hero_id
.
Path Parameters:
hero_id
: The ID of the hero whose details are to be fetched. Type:integer
. Required:true
.
Example Request:
GET /hero-detail/123/
Endpoint: GET /hero-detail-stats/<int:main_heroid>/
Description: Display detailed statistics of a specific hero identified by main_heroid
.
Path Parameters:
main_heroid
: The ID of the main hero whose detailed statistics are to be fetched. Type:integer
. Required:true
.
Example Request:
GET /hero-detail-stats/123/
Endpoint: GET /hero-skill-combo/<int:hero_id>/
Description: Display skill combinations of a specific hero identified by hero_id
.
Path Parameters:
hero_id
: The ID of the hero whose skill combinations are to be fetched. Type:integer
. Required:true
.
Example Request:
GET /hero-skill-combo/123/
Endpoint: GET /hero-rate/<int:main_heroid>/
Description: Rate a specific hero identified by main_heroid
.
Path Parameters:
main_heroid
: The ID of the main hero whose rating is to be fetched. Type:integer
. Required:true
.
Query Parameters:
past-days
(optional): Number of past days for which the data is to be fetched. Possible values:7
,15
,30
. Default:7
.
Example Request:
GET /hero-rate/123/?past-days=15
Endpoint: GET /hero-relation/<int:hero_id>/
Description: Display relationships of a specific hero identified by hero_id
.
Path Parameters:
hero_id
: The ID of the hero whose relationships are to be fetched. Type:integer
. Required:true
.
Example Request:
GET /hero-relation/123/
Endpoint: GET /hero-counter/<int:main_heroid>/
Description: Display counter information of a specific hero identified by main_heroid
.
Path Parameters:
main_heroid
: The ID of the main hero whose counter information is to be fetched. Type:integer
. Required:true
.
Example Request:
GET /hero-counter/123/
Endpoint: GET /hero-compatibility/<int:main_heroid>/
Description: Display compatibility information of a specific hero identified by main_heroid
.
Path Parameters:
main_heroid
: The ID of the main hero whose compatibility information is to be fetched. Type:integer
. Required:true
.
Example Request:
GET /hero-compatibility/123/
-
Clone the repository:
git clone https://github.com/yourusername/mlbb-hero-analytics-api.git cd mlbb-hero-analytics-api
-
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the dependencies:
pip install -r requirements.txt
-
Set up your Django settings:
- Update the
MLBB_URL
in yoursettings.py
file with the appropriate URL.
- Update the
-
Run the Django development server:
python manage.py runserver
Use the provided endpoints to fetch various analytics and data related to heroes in MLBB. Refer to the Endpoints section for detailed information on each endpoint and how to use them.
This project is licensed under the MIT License. See the LICENSE file for more details.