Inventory
Base URL
https://multus-aqw-api.vercel.app/api/aqw/items?name=AlinaQuery Parameters
| Parameter | Type | Description | Required? | Default | 
|---|---|---|---|---|
| name | string | The name/ign of a Character | Yes | "" | 
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
]