Skip to content

Temp ‐ How to use FFXIV Shopping List

Alex Cohen edited this page Sep 1, 2024 · 9 revisions

FFXIV Shopping list

View a youtube overview here!

Our shopping list search can help you plan out what to buy as you hop server to server buying materials for crafting sessions.

image

This pairs well with our craftsim (crafting profit simulator) search!

When you know what you want to craft and need help finding maaterials the shopping list can help!

  1. Get the names of the items you want to find and enter them into the quantity you want to craft, prefered DOH and HQ or not.
image
  1. Add more items you want to make (up to 10 at a time)

  2. Your shopping list will appear at the bottom of the search screen.

image

Legacy version: unsupported

This older alpha version is still available, but no longer supported.

  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