Skip to main content
POST
/
create-item
Create or update an item
curl --request POST \
  --url https://api.wanderersguide.app/functions/v1/create-item \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "level": 123,
  "rarity": "COMMON",
  "description": "<string>",
  "group": "GENERAL",
  "size": "TINY",
  "content_source_id": 123,
  "version": "<string>",
  "id": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "price": {
    "cp": 123,
    "sp": 123,
    "gp": 123,
    "pp": 123
  },
  "bulk": "<string>",
  "availability": "STANDARD",
  "traits": [
    123
  ],
  "hands": "<string>",
  "craft_requirements": "<string>",
  "usage": "<string>",
  "meta_data": {},
  "operations": [
    {}
  ]
}
'
{
  "status": "success",
  "data": {
    "name": "<string>",
    "level": 123,
    "rarity": "COMMON",
    "description": "<string>",
    "group": "GENERAL",
    "size": "TINY",
    "content_source_id": 123,
    "version": "<string>",
    "id": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "price": {
      "cp": 123,
      "sp": 123,
      "gp": 123,
      "pp": 123
    },
    "bulk": "<string>",
    "availability": "STANDARD",
    "traits": [
      123
    ],
    "hands": "<string>",
    "craft_requirements": "<string>",
    "usage": "<string>",
    "meta_data": {},
    "operations": [
      {}
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wanderersguide.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key created in your Wanderer's Guide account settings. Send as Authorization: Bearer <key>. Used for direct API access from external tools and scripts.

Body

application/json
name
string
required
level
integer
required
rarity
enum<string>
required
Available options:
COMMON,
UNCOMMON,
RARE,
UNIQUE
description
string
required
group
enum<string>
required
Available options:
GENERAL,
WEAPON,
ARMOR,
SHIELD,
RUNE,
UPGRADE,
MATERIAL
size
enum<string>
required
Available options:
TINY,
SMALL,
MEDIUM,
LARGE,
HUGE,
GARGANTUAN
content_source_id
integer
required
version
string
required
id
integer
created_at
string<date-time>
price
object
bulk
string
availability
enum<string>
Available options:
STANDARD,
LIMITED,
RESTRICTED
traits
integer[]
hands
string
craft_requirements
string
usage
string
meta_data
object
operations
object[]

Response

200 - application/json

JSend success.

status
enum<string>
Available options:
success
data