Missing fields in json response?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2023 10:39 AM - edited ‎07-16-2023 10:41 AM
When I do a search call for auctions and non-auctions, I get a response but it doesn't show 'currentBidPrice' and 'itemEndDate' even if it's auction only without buyout. There's a lot of fields it doesn't show, but those are the 2 important ones. I can see price, creation date, condition, buying options, etc. Is there something I'm missing?
Also I'm using the endpoint https://api.ebay.com/buy/browse/v1/item_summary/search
Missing fields in json response?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2023 12:08 PM
By default, the item-summary call does not return auctions. Thus it won't return 'currentBidPrice' or 'itemEndDate' unless a filter is set. Good-til-canceled listings don't have an end date or bid price.
https://developer.ebay.com/api-docs/buy/browse/resources/item_summary/methods/search
To retrieve auctions, a filter must be set as part of the call:
https://developer.ebay.com/api-docs/buy/static/ref-buy-browse-filters.html
filter=buyingOptions:{FIXED_PRICE|AUCTION}
Missing fields in json response?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2023 06:26 PM
Thanks for the reply, but I do AUCTION|FIXED_PRICE|BEST_OFFER and do see 'auction only' item summaries. They are missing the fields as well. Do I need to make a call for ONLY auctions maybe?
Missing fields in json response?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-17-2023 07:58 AM
I tried filter=buyingOptions:{AUCTION} but this did not work either, still missing many fields including the 2 I mentioned.
