https://github.com/schultyy/curl-shortcuts
https://github.com/schultyy/curl-shortcuts
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/schultyy/curl-shortcuts
- Owner: schultyy
- Created: 2013-12-18T15:56:22.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-18T15:59:42.000Z (over 12 years ago)
- Last Synced: 2025-10-09T03:58:34.854Z (8 months ago)
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# curl-shortcuts
## Querying CouchDB
curl -XGET "http://localhost:5984/db/_design/design-doc/_view/my_fancy_view"
### Querying with start and endkey
curl -XGET "http://localhost:5984/db/_design/design-doc/_view/my_fancy_view?startkey\=\[\"val\"\]?endkey=\[\"val\",\{\}\]"
## Query with accept header
curl -XGET -H "Accept: application/xml" "http://localhost:3000/foo/bar/gedoens"
## Query with Content-Type header
curl -XGET -H "Content-Type: application/xml" "http://localhost:3000/foo/bar/gedoens"