I have not been able to address tables in a base other than the first table (the one that shows up in the API documentation for a base). I have tried substituting a different table name, but that gives me an error.
For example, I have a base called “Bug Tracker”. The first table is called “Bugs and Issues”.
I can get at it with
curl https://api.airtable.com/v0/BASE_ID/Bugs%20and%20issues?api_key=MY_API_KEY
As you can see, I have another table in that base called “Testers”; however
curl https://api.airtable.com/v0/BASE_ID/Testers?api_key=MY_API_KEY
returns
{"error":{"type":"TABLE_NOT_FOUND","message":"Could not find table Testers in application BASE_ID"}}
How can I get data from the “Testers” table?
Thank you