Hi @david_swain - when you use the Airtable API to list records in a table you specify the table and the view:
https://api.airtable.com/v0/YOUR_APP_ID/Inventory?maxRecords=100&view=YOUR_VIEW_NAME
It sounds like you’ve got a view or views that you use to do your work in Airtable, but this isn’t the same set of data you might want to show on the website, e.g. you’re working on live and not live events, but only want to show live events.
The answer here is to create a new view of live events only and query this view via the API. This way only the current live events will show and old or upcoming events will be filtered out.
JB