Can you post more details that show the request you are making to Airtable? By default, when issuing GET requests for a table, Airtable will fetch all records. If you specify the “view” query parameter, then Airtable will only return records that are in that view which means any filters on that view will impact the records the API returns.
If you want all records from a table, then the following query is all you need:
curl -X GET \
https://api.airtable.com/v0/{YOUR BASE ID}/{TABLE NAME} \
-H 'Authorization: Bearer {YOUR API KEY}'
Can you post more details that show the request you are making to Airtable? By default, when issuing GET requests for a table, Airtable will fetch all records. If you specify the “view” query parameter, then Airtable will only return records that are in that view which means any filters on that view will impact the records the API returns.
If you want all records from a table, then the following query is all you need:
curl -X GET \
https://api.airtable.com/v0/{YOUR BASE ID}/{TABLE NAME} \
-H 'Authorization: Bearer {YOUR API KEY}'
Thanks a lot. I don’t knew about this view parameter, so I’ve removed it and only send the formula and everything works.
Thannnnnks a lot!