Cartel Empire — API requests (round 4)
8 days ago
JEI_HYUN
78 Total Respect
JEI_HYUN
78 Respect
8 days ago
Responses
3 days ago
JEI_HYUN
78 Total Respect
JEI_HYUN
78 Respect
3 days ago
Other stuff I thought of:
Jobs — a User/Job selection (or a few fields on User/Activities): jobType, jobTime (time in the job / time until the current action finishes), and prestige (level + progress to the next tier). Public for other players, private for your own timer.
Name history — a User/NameHistory selection, or a nameHistory array on user/advanced: a player's past usernames with change timestamps, so an identity stays traceable across renames. Public — the same identity the profile already shows.
Forum reads — there's no Forum endpoint yet. A read-only selection shaped like Chat / user/events would cover it:
Forum/Replies— new replies to threads you started, posted in, or subscribed to (threadId,threadTitle,postId,authorId,authorName,created,viewed).Forum/Thread?id=— the posts in a thread (optional).Forum/Threads?category=andForum/Categories— a thread index and category tree (optional).
Thanks again!
Huge thanks for the August 4th round!
This round covers the three remaining own-cartel reads that still force a page visit — the last of the cartel-management views that can't run on the API yet — plus a couple of general reads that would cut a lot of request volume.
The cartel reads use the same gate as the ones you just shipped: the existing Cartel "Access API" permission (Capo-level), own-cartel only, read-only. Nothing here needs a new permission.
New cartel selections
Cartel/Missions— the active cartel missions. Per mission:name,period(Daily/Weekly),rarity,objective(the requirement text),progress(current) andtarget(goal),percent,rewards(vault cash / cartel rep / item), andexpires(timestamp or seconds remaining). Optionally acompleted/claimableflag. Empty array when there are no active missions.Lets a leader watch mission progress from a dashboard without opening the Missions page.
Cartel/Smuggling— the submarine and its current run.status,condition,cargoCapacity,speed,durability,totalRuns,runsSinceUpgradestatus,startDate,endDate,requirementsMet,rewardsStatusThis would let the smuggling view — and a "run finished, collect it" reminder — work without walking the page.
Cartel/Vault— the vault figures:total/balance,memberBalance,available, plus the deposit / withdraw / send ledger withfrom/toandamount, like the other time selections. Re-requested from round 3 since it didn't make the August 4th batch. It's the one cartel-management number a leader still can't read without opening the page.Fewer round-trips (this would help the most)
Multiple IDs in one
userrequest — e.g.user/advanced?ids=1,2,3returning an array, the waycartel/membersalready returns the whole roster in a single call.Re-requested from round 2, and honestly the single most useful item on this list now. A watching tool has to make one call per player, per cycle today. That eats the 200/min budget quickly and hard-caps how many players can be watched at once. Batching
user/advancedanduser/statusby an ID list, even with a modest cap like 20–50 IDs per call, would let the same view cover far more players for a fraction of the requests.Public-Only data, so no new permission needed.
A cheap "has anything changed?" for own status — some way to wait on a change rather than re-poll: a long-poll, an
If-Modified-Since/304onuser/status, or even anextChangeAthint.Anything waiting on your own energy or life refill, a cooldown clearing, or a jail / hospital release polls on a short timer right now. Being told "nothing changed" cheaply — or being pushed when it does — would take real, steady load off the rate limit. Not essential, but it pairs well with the batching above.
Market
A lowest-listing read for an item — given an item ID, the current lowest market offer (price + quantity available), i.e. the top row of
/Market?sort=price&dir=ascfor that item.items.itemValuegives the aggregate market value but not the live lowest listing, so any "cheapest right now" or "what would it cost to top this up" figure still has to read the/Marketpage. A smallmarket?item=<id>selection — or alowestListingfield onitems— would let live price checks and cost-to-fill totals run on the API instead.Also handy, not blocking
cartel/basicorcartel/perks— the available rep the Perks page shows, distinct from the cartel's totalreputation. The perk list is readable via the API now, but affordability still needs a Perks-page visit to know the spendable pool./Bountyby hand.Thanks again — the last round made a real difference to what's possible without scraping.