Discover/Rolimons API
live

Rolimons APIrolimons.com

Access Roblox limited item values, player inventories, trade ads, game stats, and site articles from Rolimons.com via a single structured API.

Endpoint health
verified 4d ago
get_games
get_player_details
get_recent_trades
get_articles
search_players
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Rolimons API?

The Rolimons API exposes 6 endpoints covering Roblox limited item market data, player profiles, and trade activity sourced from Rolimons.com. The get_items endpoint alone returns over 2,500 tracked limited items in a single call, each with fields for RAP, projected value, demand rating, trend, and rarity flags. Combined with get_player_details and get_recent_trades, the API gives developers a structured view of the Rolimons trading ecosystem.

Try it

No input parameters required.

api.parse.bot/scraper/ebd10b7f-8bb9-4477-a064-fe97fea9d443/<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/ebd10b7f-8bb9-4477-a064-fe97fea9d443/get_items' \
  -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 rolimons-com-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.

"""Rolimons API — browse Roblox limited items, look up players, check trades and games."""
from parse_apis.rolimons_api import Rolimons, PlayerNotFound

client = Rolimons()

# List limited items, capped to 5, and show market data.
for item in client.items.list(limit=5):
    print(item.name, item.rap, item.value, item.demand)

# Search players by username, drill into the first match's full profile.
player_summary = client.playersummaries.search(query="Linkmon99", limit=1).first()
if player_summary:
    player = player_summary.details()
    print(player.player_id, player.is_verified, player.last_location)

# Fetch a player directly by ID with typed-error handling.
try:
    detail = client.players.get(player_id="2207291")
    print(detail.player_id, detail.is_verified, detail.value)
except PlayerNotFound as exc:
    print(f"Player not found: {exc}")

# Browse recent trade ads.
for trade in client.tradeads.list(limit=3):
    print(trade.trade_ad_id, trade.username, trade.offering)

# Check top games by player count.
for game in client.games.list(limit=3):
    print(game.name, game.player_count, game.thumbnail_url)

# Read latest articles.
for article in client.articles.list(limit=3):
    print(article.title, article.summary)

print("exercised: items.list / playersummaries.search / details / players.get / tradeads.list / games.list / articles.list")
All endpoints · 6 totalmissing one? ·

Extract detailed item data including values, prices, demand, trend, and market information for all Roblox limited items tracked by Rolimons. Returns over 2500 items in a single call. Each item includes RAP (Recent Average Price), projected value, demand rating (1-4 scale, -1 if unrated), trend rating, and rarity flags.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of item objects with market data",
    "item_count": "total number of items tracked"
  },
  "sample": {
    "data": {
      "items": [
        {
          "rap": 1308,
          "name": "Red Baseball Cap",
          "trend": -1,
          "value": -1,
          "demand": -1,
          "status": -1,
          "acronym": "",
          "is_rare": false,
          "item_id": "1028606",
          "is_limited": true,
          "is_projected": false,
          "default_price": 1308
        },
        {
          "rap": 515407,
          "name": "The Classic ROBLOX Fedora",
          "trend": 2,
          "value": 510000,
          "demand": 4,
          "status": -1,
          "acronym": "CF",
          "is_rare": false,
          "item_id": "1029025",
          "is_limited": true,
          "is_projected": false,
          "default_price": 510000
        }
      ],
      "item_count": 2555
    },
    "status": "success"
  }
}

About the Rolimons API

Item Market Data

The get_items endpoint returns a full snapshot of every Roblox limited item tracked by Rolimons — typically over 2,500 items. Each item object includes item_id, name, acronym, rap (Recent Average Price), value (Rolimons projected value), default_price, demand, trend, status, is_rare, is_projected, and is_lim. This makes it straightforward to build valuation tools, price trackers, or demand-filtered item tables without needing to page through results.

Player Profiles and Inventories

Player lookup is a two-step flow. Use search_players with a query string to find up to 15 matching players, each returned with a player_id and username. Pass that player_id to get_player_details to retrieve the player's full limited item inventory (a map of item_id to asset instance IDs), total value, total rap, is_verified status, is_online flag, last_online timestamp, last_location, and any badges with the Unix timestamps they were earned.

Trade Advertisements

The get_recent_trades endpoint returns current trade ad listings posted on Rolimons. Each trade ad in the trade_ads array is structured as an array containing the trade_ad_id, timestamp, player_id, username, an offering object, and a requesting object — both of which carry item lists and tags. The trade_ad_count field tells you how many ads are in the current snapshot.

Games and Articles

get_games returns thousands of Roblox games tracked by Rolimons, each with game_id, name, player_count, and thumbnail_url. get_articles retrieves site publications with title, link, summary, and thumbnail fields — useful for surfacing Rolimons market commentary or update announcements alongside live data.

Reliability & maintenanceVerified

The Rolimons API is a managed, monitored endpoint for rolimons.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rolimons.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 rolimons.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
4d 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 Roblox limited item price tracker using rap and value fields from get_items
  • Create a portfolio calculator by combining a player's inventory from get_player_details with item values from get_items
  • Monitor active trade advertisements with get_recent_trades to identify trending items in circulation
  • Filter items by demand, trend, or is_projected flags to surface undervalued or high-demand limiteds
  • Display live Roblox game rankings sorted by player_count from get_games
  • Aggregate Rolimons market articles via get_articles for a news feed or alert system
  • Search and compare player inventories by chaining search_players with repeated get_player_details calls
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 Rolimons have an official developer API?+
Rolimons does not publish an official documented developer API. The site provides some public data endpoints used by the community, but there is no official API portal, versioning, or supported developer program.
What does `get_player_details` return for a player's inventory?+
The inventory field is a JSON object where each key is an item_id and the value is an array of asset instance IDs the player owns for that item. A player owning two copies of the same limited will have two entries in that array. The endpoint also returns total rap, total value, is_verified, is_online, last_online as a Unix timestamp, last_location, and a badges object mapping badge names to earned timestamps.
Does the API return individual trade offer history or completed trades for a player?+
Not currently. The API covers active trade advertisements from get_recent_trades and a player's current item inventory from get_player_details, but historical completed trade records are not exposed. You can fork the API on Parse and revise it to add an endpoint targeting that data if Rolimons surfaces it.
How fresh is the item data returned by `get_items`?+
The get_items endpoint reflects the current state of Rolimons' item database at the time of the request. Rolimons updates item values and RAP figures periodically based on marketplace activity, so the data represents a point-in-time snapshot rather than a true real-time stream. For applications that require high-frequency price updates, polling get_items at intervals is the intended pattern.
Can I filter `get_items` results by demand level or rarity in the request itself?+
The get_items endpoint returns all tracked items in a single response with no server-side filtering parameters. Filtering by fields like demand, is_rare, trend, or is_projected must be done client-side after receiving the full item array. The API covers all items in one call, so no pagination is needed. You can fork the API on Parse and revise it to add a filtered endpoint if you want server-side narrowing.
Page content last updated . Spec covers 6 endpoints from rolimons.com.
Related APIs in MarketplaceSee all →
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.
csgoroll.com API
Access real-time CS:GO marketplace listings and stats, browse available cases with detailed information, check leaderboards and case battle results, and view the latest game drops and exchange rates. Track pricing data, compare case odds, and monitor top player rankings all from one unified source.
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.
eldorado.com API
Search for in-game accounts and currency listings on Eldorado.gg, view seller profiles with reviews, and check offer details and pricing. Browse featured games, explore account inventories by game, and research seller history to make informed purchases on the marketplace.
fortnitetracker.com API
Track Fortnite competitive tournaments by browsing upcoming events, viewing detailed information about specific competitions, and checking player leaderboards to see rankings and performance stats. Monitor the esports calendar and follow how top competitors are performing across official Fortnite events.
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.
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.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.