Get all the characters #745
-
How do you get all of the characters? When using a GET request to /characters you get the first 100 characters, how can you get the rest? |
Beta Was this translation helpful? Give feedback.
Answered by
danielschuster-muc
Oct 2, 2023
Replies: 1 comment
-
This is done via pagination: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
danielschuster-muc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is done via pagination:
https://api.potterdb.com/v1/characters?page[number]=5
. You can also specify the number of results per page withpage[size]=50
etc. (100 is the limit however).I should probably add a note in the documentation.