Authentication
Connections
AWS
Guard Rails
Server Management
Jira
Organization Management
Reports
User Management
Sessions
Connections
List Database Tables
List tables from a database without column details
GET
/
connections
/
{nameOrID}
/
tables
curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/tables
{
"schemas": [
{
"name": "<string>",
"tables": [
"<string>"
]
}
]
}
Path Parameters
Name or UUID of the connection
Query Parameters
Name of the database
Name of the schema (optional - if not provided, returns tables from all schemas)
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://use.hoop.dev/api/connections/{nameOrID}/tables
{
"schemas": [
{
"name": "<string>",
"tables": [
"<string>"
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.