API endpoints for tables

Hi, I was wondering there exist any endpoints exposing all table-ids of a given database
meaning something like
https://api.baserow.io/api/database/1234 → returning something like

[
    {
        "table_id": "12345",
        "table_name": "foo"
    },
    {
        "table_id": "12346",
        "table_name": "bar"
    }
]

IMHO such an endpoint would be very useful to write generic code.
Sorry if I missed something like this in the Documentation and thanks for your help and your great work!

[something similar would also be nice for databases]

2 Likes

Hey there :slight_smile:

Yes there is: /database/tables/database/${databaseId}/

Thank you very much!!! Stupid me, now I also found the full api-doc Baserow API spec