AQW
Inventory

Inventory

Base URL

https://multus-aqw-api.vercel.app/api/aqw/items?name=Alina

Query Parameters

ParameterTypeDescriptionRequired?Default
namestringThe name/ign of a CharacterYes""

Request Samples

import axios from "axios";
 
// Using "Alina" as name query
const name = "Alina"
const url = `https://multus-aqw-api.vercel.app/api/aqw/items?name=${name}`;
const data = async () => {
    try {
        const { data } = await axios.get(url);
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

[
  {
      "acTagged": false,
      "quantity": 1,
      "name": "Mage",
      "type": "Class"
  },
  {
      "acTagged": false,
      "quantity": 1,
      "name": "No Class",
      "type": "Class"
  },
  {
      "acTagged": true,
      "quantity": 1,
      "name": "AFKnator",
      "type": "Armor"
  },
  ...
  // Other Items
]