GW2Spidy API
Overview
GW2Spidy provides item and trade market data from Guild Wars 2, letting you look up prices and listings on the in-game auction house. It is free to use and requires no API key, making it very accessible for new developers. Use it to build price trackers, market analytics tools, or fan sites for Guild Wars 2.
Beginner Tip
This API is community-maintained and may have limited uptime; always check the GitHub wiki for the latest endpoint documentation before building.
Available Data
Example Response
{
"id": 1,
"name": "GW2Spidy",
"data": "GW2Spidy API, Items data on the Guild Wars 2 Trade Market",
"source": "GW2Spidy"
} Field Reference
id Unique numeric identifier for the item on the trade market. name Display name of the item as it appears in-game. sell_price Current lowest sell listing price in copper coins. buy_price Current highest buy order price in copper coins. rarity Item rarity tier (e.g., Fine, Masterwork, Rare, Exotic, Legendary). Implementation Example
const url = "https://github.com/rubensayshi/gw2spidy/wiki";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Age of Empires II
Age of Empires II provides programmatic access to get information about age of empires ii resources via REST API.
AmiiboAPI
AmiiboAPI provides programmatic access to nintendo amiibo information via REST API.
Animal Crossing: New Horizons
⭐ Beginner's PickThe Animal Crossing: New Horizons API gives you free access to in-game data including villagers, critters, fossils, art, music, and furniture.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.