API:2/dailycrafting
From Guild Wars 2 Wiki
< API:2
Jump to navigationJump to search
/v2/dailycrafting
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2019-04-06
- Scope
- none
- Optional
- none
This resource returns information about time-gated recipes that can be crafted in-game.
Endpoints
- None - Request the list of all available time-gated recipe
ids
. id
- (Optional) Request the time-gated recipe for the specifiedid
. Cannot be used when specifying theids
parameter.
Parameters
ids
- (Optional; Comma Delimited List|all) Request an array of time-gated recipes for the specifiedids
or all such recipes. Cannot be used when accessing theid
endpoint.
Response
For each requested time-gated recipe id
, an object with the following properties is returned:
id
(string) - The (API-specific) id of the recipe.
Example
https://api.guildwars2.com/v2/dailycrafting
[ "charged_quartz_crystal", "glob_of_elder_spirit_residue", "lump_of_mithrilium", "spool_of_silk_weaving_thread", "spool_of_thick_elonian_cord" ]
https://api.guildwars2.com/v2/dailycrafting/charged_quartz_crystal
{ "id": "charged_quartz_crystal" }
https://api.guildwars2.com/v2/dailycrafting?ids=glob_of_elder_spirit_residue,charged_quartz_crystal
[ { "id": "glob_of_elder_spirit_residue" }, { "id": "charged_quartz_crystal" } ]