curl -X GET "http://example.com"
curl -X POST "http://example.com" -d "param1=value1¶m2=value2"
curl -X PUT "http://example.com/resource/1" -d "param1=value1¶m2=value2"
curl -X DELETE "http://example.com/resource/1"
curl -H "Content-Type: application/json" -H "Authorization: Bearer token" "http://example.com"
curl -u username:password "http://example.com"
curl -H "Authorization: Bearer token" "http://example.com"
curl -X POST "http://example.com" -H "Content-Type: application/json" -d '{"key1":"value1", "key2":"value2"}'
curl -X POST "http://example.com" -H "Content-Type: application/json" -d @data.json
curl -O "http://example.com/file.zip"
curl -o newfile.zip "http://example.com/file.zip"
curl -L "http://example.com"
curl -v "http://example.com"
curl -c cookies.txt "http://example.com"
curl -b cookies.txt "http://example.com"
curl -X POST "http://example.com/upload" -F "file=@/path/to/file"
curl -x http://proxyserver:port "http://example.com"
curl -k "https://example.com"
curl --cert /path/to/cert.pem "https://example.com"
curl --max-time 5 "http://example.com"
curl -H "X-My-Header: value" "http://example.com"
curl -u username:password "http://example.com"
curl -e "http://referrer.com" "http://example.com"
curl -A "Mozilla/5.0" "http://example.com"
curl -H "Origin: example.com" "http://example.com"
curl -H "Content-Type: application/json" "http://example.com"
curl --limit-rate 100K "http://example.com"
curl --max-time 30 "http://example.com"
Documentação oficial do cURL: https://curl.se/docs/
Tutorial do cURL: https://curl.se/docs/httpscripting.html
Exemplos de uso do cURL: https://www.baeldung.com/curl-rest
localhost:9200
127.0.0.1:9200
[::1]:9200
curl -X GET http://[::1]:5601
elasticsearch
- Create a new index
curl -X PUT "localhost:9200/customer?pretty"
- Index a document
curl -X PUT "localhost:9200/customer/_doc/1?pretty" -H 'Content-Type: application/json' -d'
{
"name": "John Doe"
}
'
- Get a document
curl -X GET "localhost:9200/customer/_doc/1?pretty"
- Delete an index
curl -X DELETE "localhost:9200/customer?pretty"
- Retrieve all indices
curl -X GET "localhost:9200/_cat/indices?v"
- Retrieve all documents
curl -X GET "localhost:9200/_search?pretty"
- Retrieve all documents in a specific index
curl -X GET "localhost:9200/customer/_search?pretty"
- Retrieve a specific document
curl -X GET "localhost:9200/customer/_doc/1?pretty"
- Delete a specific document
curl -X DELETE "localhost:9200/customer/_doc/1?pretty"
- Update a specific document
curl -X POST "localhost:9200/customer/_update/1?pretty" -H 'Content-Type: application/json' -d'
{
"doc": {
"name": "Jane Doe"
}
}
'
- Search for a document
curl -X GET "localhost:9200/customer/_search?q=name:Doe&pretty"
- Search for a document using a query string
curl -X GET "localhost:9200/customer/_search?q=name:Doe&sort=name:desc&pretty"
- Search for a document using a query DSL
curl -X GET "localhost:9200/customer/_search?pretty" -H 'Content-Type: application/json' -d'
{
"query": {
"match": {
"name": "Doe"
}
}
}
'
- Search for a document using a query DSL with pagination
curl -X GET "localhost:9200/customer/_search?pretty" -H 'Content-Type: application/json' -d'
{
"query": {
"match": {
"name": "Doe"
}
},
"from": 0,
"size": 1
}
'
- Search for a document using a query DSL with sorting
curl -X GET "localhost:9200/customer/_search?pretty" -H 'Content-Type: application/json' -d'
{
"query": {
"match": {
"name": "Doe"
}
},
"sort": [
{
"name": {
"order": "desc"
}
}
]
}
'
- Search for a document using a query DSL with filtering
curl -X GET "localhost:9200/customer/_search?pretty" -H 'Content-Type: application/json' -d'
{
"query": {
"bool": {
"must": {
"match": {
"name": "Doe"
}
},
"filter": {
"range": {
"age": {
"gte": 18
}
}
}
}
}
}
'
- Search for a document using a query DSL with aggregations
curl -X GET "localhost:9200/customer/_search?pretty" -H 'Content-Type: application/json' -d'
{
"size": 0,
"aggs": {
"group_by_name": {
"terms": {
"field": "name.keyword"
}
}
}
}