Apache CouchDB – port 5984

CouchDB is a database that stores data with JSON documents. Documents are accessible via HTTP(S).

Table of Contents

Queries

List databases

Returns a list of all the databases in the CouchDB instance.

http:/<couchdb-server>:5984/_all_dbs

Get DB info

Gets information about the specified database.

http:/<couchdb-server>:5984/{dbname}

List all documents from a DB

Executes the built-in _all_docs view, returning all of the documents in the database.

http:/<couchdb-server>:5984/{dbname}/_all_docs

List a specific document

Returns document by the specified docid from the specified db.

http:/<couchdb-server>:5984/{dbname}/{docid}
http:/<couchdb-server>:5984/users/admin

Reference