Discover/ROWorldDB API
live

ROWorldDB APIroworlddb.com

Access ROWorldDB SEA server data: equipment, cards, monsters, shop items, pets, and maps with stats, drop tables, and image URLs via 6 structured endpoints.

Endpoint health
verified 1d ago
list_cards
list_monsters
list_pets
list_equipment
list_shop_items
6/6 passing latest checkself-healing
Endpoints
6
Updated
8d ago

What is the ROWorldDB API?

The ROWorldDB SEA API exposes 6 endpoints covering the full Ragnarok Online World: Journey SEA server database — equipment, cards, monsters, shop items, pets, and world maps. The list_monsters endpoint alone returns per-monster stats, drop tables with item details, element, race, and body size, while list_equipment resolves stat names, job limits, set bonuses, and quality tiers into structured fields ready for direct use.

This call costs5 credits / call— charged only on success
Try it
Page number, starting from 1.
Filter by equipment type name (e.g. 'Weapon', 'Armor', 'Headwear', 'Shoes', 'Cape', 'Accessory', 'Off-Hand', 'Facewear', 'Mouthwear', 'Backwear', 'Costume', 'Exclusive') or numeric type ID. Case-insensitive.
Items per page. Clamped to 1-200.
Case-insensitive substring filter on equipment name.
Filter by quality tier (numeric, e.g. '5' for gold, '6' for red).
api.parse.bot/scraper/bb0b8f83-f9a5-4d9a-9d81-a64de4e3295e/<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/bb0b8f83-f9a5-4d9a-9d81-a64de4e3295e/list_equipment?search=tiara' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalmissing one? ·

List and search equipment items from the SEA server database. Returns enriched equipment data including resolved stat names, job limits, set bonuses, and image URLs. Supports filtering by name, equipment type, and quality tier. Results are paginated; each page fetches the full upstream dataset and slices locally, so page 1 is a full round trip. The dataset contains ~3200 items total.

Input
ParamTypeDescription
pageintegerPage number, starting from 1.
typestringFilter by equipment type name (e.g. 'Weapon', 'Armor', 'Headwear', 'Shoes', 'Cape', 'Accessory', 'Off-Hand', 'Facewear', 'Mouthwear', 'Backwear', 'Costume', 'Exclusive') or numeric type ID. Case-insensitive.
limitintegerItems per page. Clamped to 1-200.
searchstringCase-insensitive substring filter on equipment name.
qualitystringFilter by quality tier (numeric, e.g. '5' for gold, '6' for red).
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "items": "array of equipment objects with id, name, description, icon_url, quality, type, stats, conditions, suits, job_limits, and more",
    "limit": "items per page",
    "total": "total number of matching items across all pages",
    "has_more": "whether more pages exist"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "id": 10433019,
          "icon": "icon_item_accessory_dingshetoushinan",
          "name": "Headwear: Tiara of Fading Stars",
          "type": "Headwear",
          "buffs": [],
          "stats": [
            {
              "name": "ATK%",
              "value": 500,
              "attribute_id": "201"
            }
          ],
          "suits": [],
          "stunts": [],
          "job_all": true,
          "quality": 6,
          "subtype": "Combat",
          "type_id": 51,
          "icon_url": "https://roworlddb.com/media/images/item/icon_item_accessory_dingshetoushinan.webp",
          "conditions": [],
          "job_limits": [],
          "open_level": 1,
          "subtype_id": 5101,
          "description": "",
          "is_handbook": true,
          "fixed_affixes": [],
          "refine_per_level": [
            [
              29,
              4
            ]
          ]
        }
      ],
      "limit": 50,
      "total": 4,
      "has_more": false
    },
    "status": "success"
  }
}

About the ROWorldDB API

Equipment and Cards

The list_equipment endpoint returns paginated equipment records with fields including stats, conditions, suits, job_limits, and icon_url. You can filter by type (e.g. Weapon, Headwear, Accessory), quality tier (numeric strings like 5 for gold or 6 for red), and a case-insensitive search on item name. The limit parameter accepts 1–200 items per page, and has_more signals whether additional pages exist. The list_cards endpoint covers 195 cards with fields for effect, effect_lines, slot, obtain_sources, and icon_url. Cards can be filtered by slot, quality, and monster_type values such as mvp, mini, or elite.

Monsters and Shop Items

list_monsters returns monster records with level, type, race, element, body, stats, and a drops array that includes item details. The search parameter matches against both monster names and drop item names, making it useful for finding which monsters drop a specific item. Filters for element, race, body size, and type (e.g. MVP, Elite) are all supported. The response also includes an activities array listing in-game activity names and IDs. list_shop_items returns store inventory with store_name, tab_name, price, daily_limit, and icon_url, plus a full currencies and currency_groups array in every response — useful for building currency conversion or shop lookup tools.

Pets and Maps

list_pets returns approximately 31 pets with a levels array per pet that details skill progression and stat attributes at each tier, alongside quality and icon_url. The dataset is small enough to return in a single response; quality values range from 3 (Common/N) to 6 (Legendary/SSR). list_maps returns 13 world map regions via world_maps (with pic_url and center_scene_id) and approximately 380 map zone configurations via map_configs, each containing scene_id, name, pic_res, and scene coordinates. Both collections support a search filter on map name.

Reliability & maintenanceVerified

The ROWorldDB API is a managed, monitored endpoint for roworlddb.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when roworlddb.com 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 roworlddb.com 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
1d ago
Latest check
6/6 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 a character equipment planner filtered by job class using job_limits and stats from list_equipment
  • Generate a card recommendation tool by querying list_cards with slot and monster_type filters
  • Create a monster drop index by searching list_monsters with an item name in the search parameter
  • Display in-game shop inventory with pricing and daily limits sourced from list_shop_items
  • Build a pet tier list or leveling guide using the levels progression array from list_pets
  • Render an interactive world map viewer using world_maps region data and map_configs scene coordinates
  • Identify set bonus combinations by extracting the suits field from list_equipment responses
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does ROWorldDB have an official developer API?+
ROWorldDB does not publish an official public developer API or documented data feed.
How do I find which monsters drop a specific item?+
Pass the item name as the search parameter to list_monsters. The search matches against both monster names and drop item names within each monster's drops array, so you get back every monster that lists that item as a drop.
What does the `list_shop_items` response include beyond item listings?+
Every list_shop_items response includes the full currencies array (with id, name, and iconPath per currency) and a currency_groups array, regardless of pagination or filters applied. This means you can bootstrap currency metadata from any shop query without a separate call.
Does the API cover the Global or other regional servers of Ragnarok Online World: Journey?+
Not currently. All six endpoints are scoped to the SEA server database only. You can fork this API on Parse and revise it to point at a different regional server's data source.
Are guild, quest, or skill data included?+
Not currently. The API covers equipment, cards, monsters, shop items, pets, and world maps. Guild details, quest chains, and character skill trees are not exposed by any current endpoint. You can fork this API on Parse and revise it to add those missing endpoints.
Page content last updated . Spec covers 6 endpoints from roworlddb.com.
Related APIs in EntertainmentSee all →
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.
howbazaar.gg API
Query items, skills, merchants, and monsters from the How Bazaar game database. Look up detailed information about in-game equipment, abilities, NPCs, and enemy encounters, with optional filters by hero, tier, size, and tag.
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.
db.damijing.com API
db.damijing.com API
rolimons.com API
Access real-time Roblox limited item market data, search and view player profiles and inventories, track recent trade advertisements, browse top games and player counts, and read the latest site articles — all through a single API.
poedb.tw API
Search and retrieve comprehensive Path of Exile game data including items, gems, leagues, and game mechanics like bleeding effects across both PoE 1 and PoE 2. Get detailed information about specific items and categories, or browse current league information to stay updated on the latest game content.
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.
ROWorldDB SEA API – Ragnarok Online Journey Data · Parse