Usage Tips:
- Click on a keyword to enable inline editing.
- Click inside a code block to copy (excludes comments).
- Use the button to view examples.
- Click outside to collapse all examples.
Basic
# Show all databases
curl http://localhost:5984/_all_dbs
Sample Output:
TO-DO
# Show all databases (With Creds)
curl http://<USER>:<PASSWORD>@localhost:5984/_all_dbs
Sample Output:
TO-DO
# Show all docs from database
curl http://localhost:5984/<DB_NAME>/_all_docs
Sample Output:
TO-DO
# Show a entry
curl http://localhost:5984/<DB_NAME>/<ID_HASH>
Sample Output:
TO-DO