It’s possible to get each individual piece of data by requesting from a few different endpoints, but I’d prefer to be able to pull those entire CSVs rather than separating into many separate API calls. Is there any way to do that, given the right OAuth scopes?

Unfortunately no, only JSON is returned from the APIs and there’s no way to combine calls or requests different formats. Those things are usually handled by language specific libraries - you may have a library that handles pagination for you for example, but underneath it still makes separate calls to the API and parses JSON.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.