API:2/home/nodes

From Guild Wars 2 Wiki
< API:2(Redirected from API:2/nodes)
Jump to navigationJump to search

/v2/home/nodes

HTTP method
GET
Format
json
API version
version 2
Release date
2017-06-06
Scope
none
Optional
none

A list of all currently available home instance nodes. Can be resolved against /v2/account/home/nodes to identify an account's unlocked nodes.

Resource response

This endpoint returns an array of ids for all currently available home instance nodes. Specifying an id returns information about the selected node with the following format:

  • id (string) - The id for the node.

Examples

https://api.guildwars2.com/v2/home/nodes

[
  "advanced_cloth_rack",
  "advanced_leather_rack",
  "airship_cargo",
  "ancient_wood_node",
  "aurilium_node",
  "bandit_chest",
  "basic_cloth_rack",
  "basic_harvesting_nodes",
  "basic_leather_rack",
  "basic_lumber_nodes",
  "basic_ore_nodes",
  "bauble_gathering_system",
  "black_lion_expedition_board",
  "black_lion_expedition_board_s4",
  "black_lion_hunters_board",
  "black_lion_industry_board",
  "bloodstone_crystals",
  "bound_hatched_chili_pepper_node",
  "brandstone_node",
  "candy_corn_node",
  "commemorative_dragon_pinata",
  "crystallized_supply_cache",
  "difluorite_crystal_cluster_node",
  "dragon_crystal",
  "elder_wood_node",
  "enchanted_treasure_chest",
  "eternal_ice_shard_node",
  "exalted_chest",
  "flaxseed_node",
  "garden_plot_01",
  "garden_plot_02",
  "garden_plot_03",
  "ghost_pepper_node",
  "hard_wood_node",
  "iron_ore_node",
  "jade_fragment",
  "king_sized_candy_corn",
  "kournan_supply_cache",
  "krait_obelisk",
  "lotus_node",
  "mistborn_mote",
  "mistonium_node",
  "mithril_ore_node",
  "omnomberry_node",
  "orichalcum_ore_node",
  "orrian_oyster_node",
  "orrian_truffle_node",
  "petrified_stump",
  "platinum_ore_node",
  "primordial_orchid",
  "prismaticite_node",
  "quartz_node",
  "salvage_pile",
  "snow_truffle_node",
  "sprocket_generator",
  "winterberry_bush",
  "wintersday_tree"
]

https://api.guildwars2.com/v2/home/nodes/basic_lumber_nodes

{
  "id": "basic_lumber_nodes"
}

https://api.guildwars2.com/v2/home/nodes?ids=wintersday_tree

[
  {
    "id": "wintersday_tree"
  }
]

https://api.guildwars2.com/v2/home/nodes?ids=brandstone_node,wintersday_tree

[
  {
    "id": "brandstone_node"
  },
  {
    "id": "wintersday_tree"
  }
]