Where is a good start to make price scripts from exchanges for my website?
do you want to add like a price indicator to your website or option to buy and sell through exchanger's API
i am not an expert but for the first you can add a
price widget to your site like this:
<div id="coindesk-widget"></div>
<script type="text/javascript" src="//widget.coindesk.com/bpiticker/coindesk-widget.min.js?509e9d"></script>
I want to understand API exchange
API exchange is basically sending an http request to the exchanger with what you want to do and signing it with your API secret key for security.
and example:
{APIRequestURI}/createorder&MarketName=BTC_USD&Amount=1&type=sell&price=420
then sign this with API secret and send it via POST method and receive the JSON response.