Paging through a result set is sometimes returning a String instead of Int for the start_index
field. Besides being silly, this can break client code that relies on a cast to Int there.
This request produces an Int:
...
"start_index": 0,
...
This request produces a String:
...
"start_index": "50",
...