How to access ALL documents in a CouchDB database? How to access ALL documents in a CouchDB database? curl curl

How to access ALL documents in a CouchDB database?


I believe the syntax is /db_name/_all_docs. See the documentation for further details.

So in your case it would be the following:

curl -X GET http://10.10.211.133:5984/ibmuwarticles/_all_docs

Hope that helps