Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
The documentation for /cards/search says This method is paginated, returning 175 cards at a time. Review the documentation for paginating the List type and and the Error type type to understand ...
#1: Initial revision
The [documentation for `/cards/search`][doc] says >This method is paginated, **returning 175 cards at a time.** Review the documentation for [paginating the List type][page] and and the [Error type][error] type to understand all of the possible output from this method. So yes, you would have to handle pagination yourself. Test the `has_more` property, and if it is `true`, append to your data with the URL at `next_page`. [doc]: https://scryfall.com/docs/api/cards/search [page]: https://scryfall.com/docs/api/lists [error]: https://scryfall.com/docs/api-overview#type-error
