Get Quest
The API interacts with the quest management system to fetch quest data
Request
GET /v1/quest?page=1&pageSize=106&questType=3 HTTP/1.1
Host: quest-dev.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
Content-Type: application/json
mm-client-id: mml
mm-user-id: 65326348d995b4f348456dceconst myHeaders = new Headers();
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("Content-Type", "application/json");
myHeaders.append("mm-client-id", "mml");
myHeaders.append("mm-user-id", "65326348d995b4f348456dce");
const requestOptions = {
method: "GET",
headers: myHeaders,
redirect: "follow"
};
fetch("https://quest-dev.api.mimiland.io/v1/quest?page=1&pageSize=106&questType=3", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));Parameter
Key
Type
Description
questType *required
Int
Type of the quest
Last updated