Please fill in the questionnaire below.
Technical Help Questionnaire
Have you read and followed the instructions at: *READ ME FIRST* Technical Help FAQs - #2 by nigel ?
Answer: Yes
I am using baserow.io
Describe the problem
Recently, I haven’t been able to call anything from the API with the script that had previously been working for almost 2 years. I thought it might be a space issue, but I am also not able to download a table — the download in safari is at zero of XXXKB and stops without being able to be reloaded.
Describe, step by step, how to reproduce the error or problem you are encountering.
Happens with a script or from the “download table” option in baserow
Provide screenshots or include share links showing:
Script example
curl \
-X GET \
-H "Authorization: Token REDACTED" \
"https://api.baserow.io/api/database/rows/table/REDACTED/?user_field_names=true&filter__field_REDACTED__date_after=2024-11-30&filter__field_2307663__date_before=2024-12-17size=150&page=1" | jq ' .results' > _data/listingdata_sub1.json
curl \
-X GET \
-H "Authorization: Token REDACTED" \
"https://api.baserow.io/api/database/rows/table/REDACTED/?user_field_names=true&filter__field_REDACTED__date_after=2024-11-30&filter__field_2307663__date_before=2024-12-17&size=150&page=2" | jq ' .results' > _data/listingdata_sub2.json
jq -s ' .[0] + .[1]' _data/listingdata_sub1.json _data/listingdata_sub2.json > _data/listingdata.json
curl \
-X GET \
-H "Authorization: Token REDACTED" \
"https://api.baserow.io/api/database/rows/table/REDACTED/?user_field_names=true" | jq ' .results' > _data/festivaldata.json
How many rows in total do you have in your Baserow tables?
2961