Mobile Legends

Mobile Legends game kikir dari munton

Required Fields dikirim dalam bentuk query params

Endpoint

GET /mlbb

Required Fields

Name
Value

id

string

zone

string

Example Request

cURL
curl -G -d "uid=800081806" localhost:3000/genshin
HTTP Client (Postman, HTTPie, etc)
http://localhost:3000/mlbb?id=469123581&zone=2418
Fetch API
async function demo(): Promise<any> {
  const hit = await fetch("http://localhost:3000/mlbb?id=469123581&zone=2418");
  const data = await hit.json();

  return data;
}

Example Response


Type

buat kalian yang pakek TypeScript

Query Params

Response

Last updated

Was this helpful?