Skip to content

Temp ‐ How to use FFXIV Shopping List

Alex Cohen edited this page Aug 9, 2023 · 6 revisions
  1. Go to our item name to id lookup to find the item ids of items you want to craft.

  2. For each item you want to craft, create json data like the following:

{"itemID": 15157, "craft_amount": 11, "hq": false, "job": 8}

This should include:

  • itemID for the items id
  • craft_amount for the amount of the item you want to craft
  • hq set to true to search for hq materials when available and set this to false to search for nq mats only for each crafted item
  • job for the job id matching the job that you will use to craft the item

For jobs the ids are:

  • 8 for 'Carpenter'
  • 9 for 'Blacksmith'
  • 10 for 'Armorer'
  • 11 for 'Goldsmith'
  • 12 for 'Leatherworker'
  • 13 for 'Weaver'
  • 14 for 'Alchemist'
  • 15 for 'Culinarian'
  1. Now put all those together in a json list (if you are new to this use a json parser to check your data is correct). You can search for up to 10 items at a time, we will increase this amount after we finish testing it.
[
    {"itemID": 15157, "craft_amount": 11, "hq": false, "job": 8},
    {"itemID": 30835, "craft_amount": 11, "hq": true, "job": 8},
    {"itemID": 38549, "craft_amount": 11, "hq": true, "job": 8},
    {"itemID": 33275, "craft_amount": 11, "hq": false, "job": 8},

    {"itemID": 39482, "craft_amount": 11, "hq": false, "job": 10},
    {"itemID": 39687, "craft_amount": 11, "hq": true, "job": 10},
    {"itemID": 39667, "craft_amount": 11, "hq": true, "job": 10}
]
  1. Go to the webpage on the temp site, pick your home server and paste it into the Shopping Data text box, then we will search for the best prices in your region:
image image
Clone this wiki locally