API:2/homestead/glyphs

From Guild Wars 2 Wiki
Jump to navigationJump to search

/v2/homestead/glyphs

HTTP method
GET
Format
json
API version
version 2
Release date
2024-08-23
Scope
none
Optional
none

This resource returns information about all glyphs available to be equipped on homestead's collection boxes.

Endpoints

  • None – Request the list of all available collection box's glyph ids when the root endpoint (v2/homestead/glyphs) has been accessed.
  • id – (Optional) Request the collection box's glyph for the specified id when accessing the endpoint (v2/homestead/glyphs/id). Cannot be used when specifying the ids parameter.

Parameters

  • ids – (Optional; Comma Delimited List|all) Request an array of collection box's glyphs for the specified ids or all collection box's glyphs. Cannot be used when using the id endpoint.

Response

For each requested collection box's glyph id, an object with the following properties is returned:

  • id (string) – The collection box's glyph id.
  • item_id (string) – The id of the related glyph item. Can be compared to the /items endpoint.
  • slot (string) – The type of collection box the item can be used in.

Example

https://api.guildwars2.com/v2/homestead/glyphs/alchemy_harvesting

{
   "id": "alchemy_harvesting",
   "item_id": 90805,
   "slot": "harvesting"
 }