You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl -H "X-API-KEY:yourapikeyhere" -H "X-API-SECRET:yoursecrethere" -X POST -d 'exchange_code=BTCC' "https://api.coinigy.com/api/v1/markets"
#post multiple parameter data
curl -H "X-API-KEY:yourapikeyhere" -H "X-API-SECRET:yoursecrethere" -X POST -d 'exch_code=BTCC&market_name=BTC/CNY&alert_price=6000.00&alert_note="time to buy the yacht"' "https://api.coinigy.com/api/v1/addAlert"
#post multiple parameter data in json format
curl -H "Content-Type: application/json" -H "X-API-KEY:yourapikeyhere" -H "X-API-SECRET:yoursecrethere" -X POST -d '{"exch_code":"BTCC","market_name":"BTC/CNY","alert_price":"6000.00","alert_note":"time to buy the yacht"}' "https://api.coinigy.com/api/v1/addAlert"