IMPORTJSONAPI
IMPORTJSONAPI copied to clipboard
Importing paginated JSONs
Has anyone found a way to gracefully support paginated JSONs? I'm having trouble with https://localbitcoins.com/buy-bitcoins-online/.json where the data is split in buckets of 50 records given that the JSON schema follows this structure
{
data: {...},
pagination: {
next: "https://localbitcoins.com/buy-bitcoins-online/.json?page=2"
}
}