Discussion: auctions.list Problems

I'm working on developing something to analyze auction data, but I've run into a problem.

The categories 'elements_compounds' and 'powder' do not exist. The actual category you have for them is 'elements_powder'. That wouldn't bother me too much, but unfortunately when I make a call to the API with that category it returns the entire auction list to me.

Also it's worth noting that there is no category 'bean' or 'gas'. All of the beans appear in 'seed' and gas appear in 'other'.

Thanks!
Not sure if this is helpful, but there's also an undocumented "auctions.search" API call that that returns some useful aggregate, per-item data based on either a search term or the category of items.

I've got some examples and docs on other undocumented methods (though auctions.search is the only one that's both useful and publicly accessible):
https://github.com/fmoo/glitch-python/blob/master/doc/secret_methods.txt
Wow! Yes, this helps a lot. Thank you.