Showing Posts For KirnDar.5498:
Hi,
Correct me if I’m wrong but shouldn’t commerce/listing endpoint (https://api.guildwars2.com/v2/commerce/listings ) return only the item ids that are on the trading post? I have a basic app that reads the listings; it first reads all the listed item ids from commerce/listings, then batch-reads the details by fetching the commerce/listings?ids=<comma_seperated_ids>. However the ids list from commerce/listing endpoint contains the id “19717”, which is Sun Bead; an account bound item that shouldn’t be on TP at all. So when i try to fetch commerce/listings?ids=<comma_seperated_ids> with 19717 as one of the ids, i got a http 400 error as no tp details for Sun Beads exists.
Eventually i’ll probably end up filtering account bound item ids from my batch-reads but shouldn’t those item ids be excluded from listings endpoints entirely? It’s the first time i’m having this problem so i thought maybe there’s some problem with the API that needs fixing.