API:2/mounts/skins
From Guild Wars 2 Wiki
Jump to navigationJump to search
/v2/mounts/skins
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2018-11-13
- Scope
- none
- Optional
- none
This resource returns information about mount skins that are available in-game.
Endpoints
- None - Request the list of all available mount skin
idswhen the root endpoint (v2/mounts/skins) has been accessed. id- (Optional) Request the mount skin for the specifiedidwhen accessing the endpoint (v2/mounts/skins/id). Cannot be used when specifying theidsparameter.
Parameters
lang– (Optional) Request localized information.page- (Optional; integer)page_size- (Optional; integer)ids- (Optional; Comma Delimited List|all) Request an array of mount skins for the specifiedidsor all mounts. Cannot be used when accessing theidendpoint.
Response
For each requested mount skin id, an object with the following properties is returned:
id(string) – The id of the mount skin.name(string) – The name of the mount as it appears in-game.icon(string) – The full icon URL.dye_slots(array of objects) – Each object contains a key-value pair for the color (dye) id and material. Can be resolved against v2/colorsmount_guid(string) – Mount GUID returned by v2/mounts/types. Only available if using schema2025-08-29T01:00:00.000Zor later.(string) – The mount type id for the given mount skin. Can be resolved against v2/mounts/types.mount- Note: This parameter has been removed as of schema
2025-08-29T01:00:00.000Z, and is replaced bymount_guid.
- Note: This parameter has been removed as of schema
Example
https://api.guildwars2.com/v2/mounts/skins
[ 1, 2, 3, 4, 6, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 56, 57, 58, 60, 61, 62, 66, 68, 70, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 118 ]
https://api.guildwars2.com/v2/mounts/skins?ids=1,2,22&v=2025-08-29T01:00:00.000Z
[
{
"id": 1,
"name": "Raptor",
"mount_guid": "B3461B6A-FBB5-4777-8C0B-A44597FC7D23",
"icon": "https://render.guildwars2.com/file/2F4AAA52F573C5425BFCD7525FB70C9E6DCAD791/1766903.png",
"dye_slots": [
{
"color_id": 19,
"material": "leather"
}
]
},
{
"id": 2,
"name": "Skimmer",
"mount_guid": "89609486-B26B-4D87-B98C-D0F183DAA08A",
"icon": "https://render.guildwars2.com/file/BD357CB6A25EEFA961B974B6E980DFB0A396A5A4/1766901.png",
"dye_slots": [
{
"color_id": 590,
"material": "leather"
}
]
},
{
"id": 22,
"name": "Polished Stone",
"mount_guid": "38644D7A-7A2D-4D65-B6F2-C9619809E38B",
"icon": "https://render.guildwars2.com/file/684AF0124E52E43F60F7AB5E9CB41F72E5517B30/1876747.png",
"dye_slots": [
{
"color_id": 381,
"material": "metal"
},
{
"color_id": 642,
"material": "leather"
},
{
"color_id": 86,
"material": "leather"
},
{
"color_id": 625,
"material": "metal"
}
]
}
]
https://api.guildwars2.com/v2/mounts/skins?ids=1,2,22
[
{
"id": 1,
"name": "Raptor",
"icon": "https://render.guildwars2.com/file/2F4AAA52F573C5425BFCD7525FB70C9E6DCAD791/1766903.png",
"dye_slots": [
{
"color_id": 19,
"material": "leather"
}
],
"mount": "raptor"
},
{
"id": 2,
"name": "Skimmer",
"icon": "https://render.guildwars2.com/file/BD357CB6A25EEFA961B974B6E980DFB0A396A5A4/1766901.png",
"dye_slots": [
{
"color_id": 590,
"material": "leather"
}
],
"mount": "skimmer"
},
{
"id": 22,
"name": "Polished Stone",
"icon": "https://render.guildwars2.com/file/684AF0124E52E43F60F7AB5E9CB41F72E5517B30/1876747.png",
"dye_slots": [
{
"color_id": 381,
"material": "metal"
},
{
"color_id": 642,
"material": "leather"
},
{
"color_id": 86,
"material": "leather"
},
{
"color_id": 625,
"material": "metal"
}
],
"mount": "jackal"
}
]