aboutsummaryrefslogblamecommitdiffstats
path: root/test/endpoints.sh
blob: 7f9533b87a8712a31f9227cd55157a9695d5cd32 (plain) (tree)
1
2
3
4
5
6
7
8
9



                 
         


                                                                                                                                    
 


                                                                                                                                    
#!/usr/bin/env sh
set -e
set -x

# sleep 5
curl -k -X GET "https://localhost:8008/crypto/v1/price?name=CAKE&unit=USD"
curl -k -X GET "https://localhost:8008/crypto/v1/pair?one=ETH&two=CAKE&multiplier=4.0"
curl -k -X POST -H "Content-Type: application/json" -d '{"name":"alert1", "expr":"ETH>CAKE"}' https://localhost:8008/crypto/v1/alert

curl -k -X GET -H "Content-Type: application/json" "https://localhost:8008/crypto/v1/alert?key=alert1"
curl -k -X DELETE -H "Content-Type: application/json" "https://localhost:8008/crypto/v1/alert?key=alert1"
curl -k -X POST -H "Content-Type: application/json" -d '{"name":"alert1", "expr":"ETH>CAKE"}' https://localhost:8008/crypto/v1/alert