Hey, Thanks again for the API Update. Found something.
Looks like a few parameters on the `/types` endpoint are being discarded somewhere in favor of defaults.
page, count, and category.
Looks like the defaults of `page=1` and `count=50` can't be overridden, and category is appearing to default to `category={any}`
A query like so:
`curl -o ./results -X GET -H "Numista-API-Key: $numista_api_key" -H "Accept: application/json" -H "Content-Type: application/json" https://api.numista.com/api/v3/types?q=peso&category=banknote&page=1&count=10`
would yield way too many results for that category and count
```
cat results | jq '. | length'
4719
50
```
Looking at the data confirms that I'm getting coins, exonumia, etc.
let me know if you need more data.