hi guys - we're lookign to use the get themes endpoint which appears to have a limit 50 - we only want to return/ list our custom themes though
Hey Dan! I dug into this a bit more โ unfortunately, the /v1.0/themes endpoint doesn't currently support filtering by type directly. The available parameters are:
query โ name search
limit โ max 50 results
after โ pagination cursor
Workaround: Each theme in the response includes a type field ("custom" or "standard"), so you can filter client-side: javascript
const customThemes = response.data.filter(theme => theme.type === 'custom');If you have a lot of themes, you may need to paginate through results, but this approach lets you identify which are yours. Building out the full implementation is a bit outside our support scope, but hopefully that points you in the right direction! If you'd like to see a native type filter added to the endpoint, definitely drop it in Ideas & Requests in the community Slack or on our Canny board โ that's where feature requests get tracked and prioritized! ๐
