Discover/How Bazaar API
live

How Bazaar APIhowbazaar.gg

Access How Bazaar game data via API: items, skills, merchants, and monster encounters with filters by hero, tier, size, and tag.

Endpoint health
verified 6h ago
get_skills
get_monsters
get_merchants
get_items
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the How Bazaar API?

The How Bazaar API provides 4 endpoints covering the full game database at howbazaar.gg, including items, skills, merchants, and monster encounters. The get_items endpoint alone returns structured data across fields like startingTier, tiers, tags, hiddenTags, customTags, enchantments, quests, and image URLs, with optional filters by hero, size, tier, and tag. This makes it straightforward to query any slice of the game's content catalog programmatically.

Try it
Filter by item tag. Matches against tags, hiddenTags, and customTags arrays on each item.
Filter by hero name. Returns items belonging to the specified hero or to Common.
Filter by item size.
Filter by starting tier.
Search items by name (case-insensitive substring match).
api.parse.bot/scraper/399e59d8-820c-4359-9761-fe29a4de9d62/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/399e59d8-820c-4359-9761-fe29a4de9d62/get_items?tag=Weapon&hero=Vanessa&size=Small&tier=Bronze&query=Sword' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace howbazaar-gg-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.how_bazaar_game_database_api import HowBazaar, Item, Skill, Merchant, MonsterDay, Tier, Size, Hero

client = HowBazaar()

# Search for weapon items belonging to Vanessa at Bronze tier
for item in client.items.search(hero=Hero.VANESSA, tier=Tier.BRONZE, tag="Weapon"):
    print(item.name, item.size, item.starting_tier, item.image_url)

# Search skills by name for a specific hero
for skill in client.skills.search(query="Aggressive", hero=Hero.COMMON):
    print(skill.name, skill.starting_tier, skill.unified_tooltips)

# List all merchants
for merchant in client.merchants.list():
    print(merchant.name, merchant.description, merchant.heroes)

# List monster encounters by day
for day in client.monsterdays.list():
    print(day.day, len(day.groups))
All endpoints · 4 totalmissing one? ·

Search and filter game items. Returns item details including tier progression tooltips, tags, enchantments, combat encounters, and image URLs. All items are returned when no filters are specified. Supports filtering by name substring, hero, size, starting tier, and tag category.

Input
ParamTypeDescription
tagstringFilter by item tag. Matches against tags, hiddenTags, and customTags arrays on each item.
herostringFilter by hero name. Returns items belonging to the specified hero or to Common.
sizestringFilter by item size.
tierstringFilter by starting tier.
querystringSearch items by name (case-insensitive substring match).
Response
{
  "type": "object",
  "fields": {
    "items": "array of item objects with id, name, startingTier, tiers, tags, hiddenTags, customTags, size, heroes, enchantments, quests, unifiedTooltips, combatEncounters, image_url",
    "total": "integer count of items in the filtered result"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "529a7e95-b350-4fd6-96fd-fef80d4c1462",
          "name": "Old Sword",
          "size": "Small",
          "tags": [
            "Weapon"
          ],
          "tiers": {
            "Gold": {
              "tooltips": [
                "Cooldown 5 seconds",
                "Deal 20 Damage"
              ]
            },
            "Bronze": {
              "tooltips": [
                "Cooldown 5 seconds",
                "Deal 5 Damage"
              ]
            },
            "Silver": {
              "tooltips": [
                "Cooldown 5 seconds",
                "Deal 10 Damage"
              ]
            },
            "Diamond": {
              "tooltips": [
                "Cooldown 5 seconds",
                "Deal 40 Damage"
              ]
            },
            "Legendary": {
              "tooltips": []
            }
          },
          "heroes": [
            "Common"
          ],
          "quests": [],
          "image_url": "https://howbazaar-images.b-cdn.net/images/items/529a7e95-b350-4fd6-96fd-fef80d4c1462.avif",
          "customTags": [],
          "hiddenTags": [
            "Damage"
          ],
          "enchantments": [
            {
              "type": "Golden",
              "tooltips": [
                "This has double value."
              ]
            }
          ],
          "startingTier": "Bronze",
          "unifiedTooltips": [
            "Cooldown 5 seconds",
            "Deal (5/10/20/40) Damage"
          ],
          "combatEncounters": [
            {
              "cardId": "41c5f103-2d76-4a51-ae28-ee294490b071",
              "cardName": "Ventriloquist"
            }
          ]
        }
      ],
      "total": 7
    },
    "status": "success"
  }
}

About the How Bazaar API

Items and Skills

The get_items endpoint returns an array of item objects with fields including id, name, startingTier, tiers, tags, hiddenTags, customTags, size, heroes, enchantments, quests, and unifiedTooltips. You can filter by tag (matched against all three tag arrays), hero, size (Small, Medium, Large), tier (Bronze through Legendary), or a case-insensitive substring query on the item name. Calling it without any filters returns every item in the database along with a total count.

The get_skills endpoint mirrors this structure for skills, returning objects with id, name, startingTier, tiers, tags, hiddenTags, customTags, size, heroes, artKey, unifiedTooltips, and combat encounter data. It accepts the same hero, tier, and query filters. Both endpoints include image URLs, making them suitable for building visual reference tools.

Merchants and Monsters

The get_merchants endpoint takes no inputs and returns all in-game merchants with fields id, name, heroes, description, filters, and image_url. The filters field describes each merchant's sale configuration — which items or categories they deal in — making it useful for building shop-lookup tools or hero-specific merchant guides.

The get_monsters endpoint returns encounter data organized by game day. Each entry in the days array includes a day number and a groups array of monster encounters. Each encounter carries cardId, cardName, health, items, skills, and image_url. This structure lets you reconstruct the full encounter progression for a given run or display what a player can expect to face on any specific day.

Reliability & maintenanceVerified

The How Bazaar API is a managed, monitored endpoint for howbazaar.gg — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when howbazaar.gg changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official howbazaar.gg API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build an item browser filtered by hero and tier for min-maxing build planning
  • Generate a merchant directory showing which merchants serve each hero and what their sale filters cover
  • Create a monster encounter timeline by consuming the days array from get_monsters
  • Display skill tooltips and artwork in a fan wiki or companion app using unifiedTooltips and image URLs
  • Cross-reference item enchantments with skills to identify synergies for a given hero
  • Power a search-as-you-type item or skill lookup using the case-insensitive query parameter
  • Filter all Bronze-tier weapons for a specific hero to produce new-player gear guides
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does How Bazaar have an official developer API?+
howbazaar.gg does not publish an official public developer API or documented data endpoint. This Parse API is the structured way to access that game data programmatically.
How does hero filtering work across `get_items` and `get_skills`?+
Both endpoints accept a hero string parameter. When set, results include items or skills that belong to the specified hero as well as those tagged as Common, since Common items are available to all heroes. Omitting the parameter returns data across all heroes.
Does the API return player account data, run history, or leaderboard stats?+
Not currently. The API covers static game content: items, skills, merchants, and monster encounter configurations. Player profiles, match history, and leaderboard data are not included. You can fork this API on Parse and revise it to add endpoints for that data.
Are there pagination controls for large result sets from `get_items`?+
The endpoints return a total count alongside the full results array. There are no pagination parameters like page or limit in the current implementation — all matching records are returned in a single response. You can fork the API on Parse and revise it to add offset-based or cursor-based pagination.
What does the `tiers` field on an item contain versus `startingTier`?+
startingTier is the base rarity tier at which an item enters the game (e.g., Bronze, Silver). The tiers field is an array containing the tier-specific variants of the item, each with its own tooltip and stat data, representing the item's full upgrade path.
Page content last updated . Spec covers 4 endpoints from howbazaar.gg.
Related APIs in EntertainmentSee all →
bazaardb.gg API
Search and retrieve comprehensive data about The Bazaar game cards, including items, skills, merchants, trainers, monsters, and events with full details like tiers, attributes, enchantments, and tooltips. Quickly find the specific card information you need to optimize your gameplay strategy and deck building.
wiki.rustclash.com API
Access Rust game items, skins, blueprints, and crafting data from the RustClash Wiki. Browse and search items by category, explore skin listings with market prices, and retrieve detailed stats including crafting recipes, repair costs, loot locations, and workbench blueprint tiers.
bg3.wiki API
Search and retrieve detailed information about Baldur's Gate 3 classes, subclasses, spells, items, quests, and other game content from the official wiki. Build character guides, plan builds, and look up game mechanics without leaving your app.
wowhead.com API
Access comprehensive World of Warcraft game data including items, NPCs, spells, and quests, plus stay updated with the latest WoW news and in-game events. Search the complete Wowhead database and read individual news articles to keep informed about current happenings in the game.
playerok.com API
Search and browse in-game items, accounts, and gaming services on Playerok's gaming marketplace. Access detailed product listings, game categories, and featured items. Filter by game or category to retrieve available offerings.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
dofusroom.com API
Browse and search thousands of Dofus equipment pieces and weapons to find detailed stats, compare items by category, and discover crafting recipes with all required resources. Get instant access to comprehensive game equipment data covering over 3,200 items to optimize your gear and crafting strategies.
mlbb.io API
Access real-time Mobile Legends hero statistics, tier rankings, optimal builds, and emblem recommendations to make informed gameplay decisions. Search for specific heroes and view comprehensive data including item lists and competitive tier placements to optimize your strategy.