9.3. GET /_all_dbs

MethodGET /_all_dbs
Request None
Response JSON list of DBs
Admin Privileges Requiredno
Return Codes
200 Request completed successfully.

Returns a list of all the databases in the CouchDB instance. For example:

GET http://couchdb:5984/_all_dbs
Accept: application/json

The return is a JSON array:

[
   "_users",
   "contacts",
   "docs",
   "invoices",
   "locations"
]