These button examples are preloaded with an example merchant ID, you should not actually send funds to them.
* Testing Note: The system will only let you have 3 transactions at a time in the 'Waiting for funds...' state (as a buyer, no limit for sellers) *Minimal Button
<form action="https://www.coinpayments.net/index.php" method="post" target="_top">
<input type="hidden" name="cmd" value="_pay_simple">
<input type="hidden" name="reset" value="1">
<input type="hidden" name="merchant" value="3bf9f9f8b9d9c74b387a3fa6339f5dd8">
<input type="hidden" name="currency" value="LTC">
<input type="hidden" name="amountf" value="1.00">
<input type="hidden" name="item_name" value="Test Item">
<input type="image" src="https://www.coinpayments.net/images/pub/buynow-grey.png" alt="Buy Now with CoinPayments.net">
</form>
Button with Item Description and Shipping Cost
<form action="https://www.coinpayments.net/index.php" method="post" target="_top">
<input type="hidden" name="cmd" value="_pay_simple">
<input type="hidden" name="reset" value="1">
<input type="hidden" name="merchant" value="3bf9f9f8b9d9c74b387a3fa6339f5dd8">
<input type="hidden" name="currency" value="LTC">
<input type="hidden" name="amountf" value="5.00">
<input type="hidden" name="item_name" value="Test Item">
<input type="hidden" name="item_desc" value="Item Description">
<input type="hidden" name="shippingf" value="1.00">
<input type="image" src="https://www.coinpayments.net/images/pub/buynow.png" alt="Buy Now with CoinPayments.net">
</form>
Button with Shipping Address and Success URL
<form action="https://www.coinpayments.net/index.php" method="post" target="_top">
<input type="hidden" name="cmd" value="_pay_simple">
<input type="hidden" name="reset" value="1">
<input type="hidden" name="merchant" value="3bf9f9f8b9d9c74b387a3fa6339f5dd8">
<input type="hidden" name="currency" value="USD">
<input type="hidden" name="amountf" value="10.00">
<input type="hidden" name="item_name" value="Test Item">
<input type="hidden" name="item_desc" value="Item Description">
<input type="hidden" name="want_shipping" value="1">
<input type="hidden" name="success_url" value="http://www.yoursite.com/success">
<input type="image" src="https://www.coinpayments.net/images/pub/buynow-med.png" alt="Buy Now with CoinPayments.net">
</form>