<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dave111223</id>
	<title>Bitcoin Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dave111223"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Dave111223"/>
	<updated>2026-04-12T02:53:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Original_Bitcoin_client/API_calls_list&amp;diff=64117</id>
		<title>Original Bitcoin client/API calls list</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Original_Bitcoin_client/API_calls_list&amp;diff=64117"/>
		<updated>2017-10-23T00:27:00Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: /* Full list */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bitcoin API call list (as of version 0.8.0)&lt;br /&gt;
&lt;br /&gt;
Note: up-to-date API reference can be [https://bitcoin.org/en/developer-reference#bitcoin-core-apis found here].&lt;br /&gt;
&lt;br /&gt;
== Common operations ==&lt;br /&gt;
&lt;br /&gt;
=== Listing my bitcoin addresses ===&lt;br /&gt;
&lt;br /&gt;
Listing the bitcoin [[address|addresses]] in your wallet is easily done via &#039;&#039;listreceivedbyaddress&#039;&#039;. It normally lists only addresses which already have received transactions, however you can list all the addresses by setting the first argument to 0, and the second one to true.&lt;br /&gt;
&lt;br /&gt;
[[accounts explained|Accounts]] are used to organize addresses.&lt;br /&gt;
&lt;br /&gt;
== Full list ==&lt;br /&gt;
&lt;br /&gt;
Required arguments are denoted inside &amp;amp;lt; and &amp;amp;gt; Optional arguments are inside [ and ].&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Command !! Parameters !! Description !! Requires unlocked wallet? (v0.4.0+)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;addmultisigaddress&amp;lt;/code&amp;gt; || &amp;lt;nrequired&amp;gt; &amp;lt;&#039;[&amp;quot;key&amp;quot;,&amp;quot;key&amp;quot;]&#039;&amp;gt; [account] || Add a nrequired-to-sign multisignature address to the wallet. Each key is a bitcoin address or hex-encoded public key. If [account] is specified, assign address to [account]. Returns a string containing the address. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;addnode&amp;lt;/code&amp;gt; || &amp;lt;node&amp;gt; &amp;lt;add/remove/onetry&amp;gt; || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Attempts add or remove &amp;lt;node&amp;gt; from the addnode list or try a connection to &amp;lt;node&amp;gt; once. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;backupwallet&amp;lt;/code&amp;gt; || &amp;lt;destination&amp;gt; || Safely copies wallet.dat to destination, which can be a directory or a path with filename. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;createmultisig&amp;lt;/code&amp;gt; || &amp;lt;nrequired&amp;gt; &amp;lt;&#039;[&amp;quot;key,&amp;quot;key&amp;quot;]&#039;&amp;gt; || Creates a multi-signature address and returns a json object ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;createrawtransaction&amp;lt;/code&amp;gt; || [{&amp;quot;txid&amp;quot;:txid,&amp;quot;vout&amp;quot;:n},...] {address:amount,...} || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Creates a [[Raw Transactions|raw transaction]] spending given inputs. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;decoderawtransaction&amp;lt;/code&amp;gt; || &amp;lt;hex string&amp;gt; || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Produces a human-readable JSON object for a [[Raw Transactions|raw transaction]]. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;dumpprivkey&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; || Reveals the private key corresponding to &amp;lt;bitcoinaddress&amp;gt; || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;dumpwallet&amp;lt;/code&amp;gt; || &amp;lt;filename&amp;gt; || &#039;&#039;&#039;version 0.13.0&#039;&#039;&#039; Exports all wallet private keys to file || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;encryptwallet&amp;lt;/code&amp;gt; || &amp;lt;passphrase&amp;gt; || Encrypts the wallet with &amp;lt;passphrase&amp;gt;. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaccount&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; || Returns the account associated with the given address. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaccountaddress&amp;lt;/code&amp;gt; || &amp;lt;account&amp;gt; || Returns the current bitcoin address for receiving payments to this account. If &amp;lt;account&amp;gt; does not exist, it will be created along with an associated new address that will be returned. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaddednodeinfo&amp;lt;/code&amp;gt; || &amp;lt;dns&amp;gt; [node] || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Returns information about the given added node, or all added nodes&lt;br /&gt;
(note that onetry addnodes are not listed here)&lt;br /&gt;
If dns is false, only a list of added nodes will be provided,&lt;br /&gt;
otherwise connected information will also be available.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaddressesbyaccount&amp;lt;/code&amp;gt; || &amp;lt;account&amp;gt; || Returns the list of addresses for the given account. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getbalance&amp;lt;/code&amp;gt; || [account] [minconf=1] || If [account] is not specified, returns the server&#039;s total available balance.&amp;lt;br/&amp;gt;If [account] is specified, returns the balance in the account. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getbestblockhash&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.9&#039;&#039;&#039; Returns the hash of the best (tip) block in the longest block chain. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblock&amp;lt;/code&amp;gt; || &amp;lt;hash&amp;gt; || Returns information about the block with the given hash. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblockcount&amp;lt;/code&amp;gt; || || Returns the number of blocks in the longest block chain. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblockhash&amp;lt;/code&amp;gt; || &amp;lt;index&amp;gt; || Returns hash of block in best-block-chain at &amp;lt;index&amp;gt;; index 0 is the [[genesis block]] || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblocknumber&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;Deprecated&#039;&#039;&#039;. &#039;&#039;&#039;Removed in version 0.7&#039;&#039;&#039;. Use getblockcount. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblocktemplate&amp;lt;/code&amp;gt; || [params] || Returns data needed to construct a block to work on.  See [[ BIP_0022]] for more info on params.|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getconnectioncount&amp;lt;/code&amp;gt; || || Returns the number of connections to other nodes. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getdifficulty&amp;lt;/code&amp;gt; || || Returns the proof-of-work difficulty as a multiple of the minimum difficulty. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getgenerate&amp;lt;/code&amp;gt; || || Returns true or false whether bitcoind is currently generating hashes || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gethashespersec&amp;lt;/code&amp;gt; || || Returns a recent hashes per second performance measurement while generating. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getinfo&amp;lt;/code&amp;gt; || || Returns an object containing various state info. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getmemorypool&amp;lt;/code&amp;gt; || [data] || &#039;&#039;&#039;Replaced in v0.7.0 with getblocktemplate, submitblock, getrawmempool&#039;&#039;&#039; || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getmininginfo&amp;lt;/code&amp;gt; || || Returns an object containing mining-related information:&lt;br /&gt;
* blocks&lt;br /&gt;
* currentblocksize&lt;br /&gt;
* currentblocktx&lt;br /&gt;
* difficulty&lt;br /&gt;
* errors&lt;br /&gt;
* generate&lt;br /&gt;
* genproclimit&lt;br /&gt;
* hashespersec&lt;br /&gt;
* pooledtx&lt;br /&gt;
* testnet&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getnewaddress&amp;lt;/code&amp;gt; || [account] || Returns a new bitcoin address for receiving payments.  If [account] is specified payments received with the address will be credited to [account]. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getpeerinfo&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns data about each connected node. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getrawchangeaddress&amp;lt;/code&amp;gt; || [account]|| &#039;&#039;&#039;version 0.9&#039;&#039;&#039; Returns a new Bitcoin address, for receiving change.  This is for use with raw transactions, NOT normal use. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getrawmempool&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns all transaction ids in memory pool || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getrawtransaction&amp;lt;/code&amp;gt; || &amp;lt;txid&amp;gt; [verbose=0] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Returns [[Raw Transactions|raw transaction]] representation for given transaction id. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getreceivedbyaccount&amp;lt;/code&amp;gt; || [account] [minconf=1] || Returns the total amount received by addresses with [account] in transactions with at least [minconf] confirmations. If [account] not provided return will include all transactions to all accounts. (version 0.3.24) || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getreceivedbyaddress&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; [minconf=1] || Returns the amount received by &amp;lt;bitcoinaddress&amp;gt; in transactions with at least [minconf] confirmations. It correctly handles the case where someone has sent to the address in multiple transactions. Keep in mind that addresses are only ever used for receiving transactions. Works only for addresses in the local wallet, external addresses will always show 0. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gettransaction&amp;lt;/code&amp;gt; || &amp;lt;txid&amp;gt; || Returns an object about the given transaction containing:&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount of the transaction&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; :  number of confirmations of the transaction&lt;br /&gt;
* &amp;quot;txid&amp;quot; : the transaction ID&lt;br /&gt;
* &amp;quot;time&amp;quot; : time associated with the transaction&amp;lt;ref&amp;gt;From block timestamp, unless transaction was already in memory pool then the local time when the client added the transaction to its memory pool&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* &amp;quot;details&amp;quot; - An array of objects containing:&lt;br /&gt;
** &amp;quot;account&amp;quot;&lt;br /&gt;
** &amp;quot;address&amp;quot;&lt;br /&gt;
** &amp;quot;category&amp;quot;&lt;br /&gt;
** &amp;quot;amount&amp;quot;&lt;br /&gt;
** &amp;quot;fee&amp;quot;&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gettxout&amp;lt;/code&amp;gt; || &amp;lt;txid&amp;gt; &amp;lt;n&amp;gt; [includemempool=true] || Returns details about an unspent transaction output (UTXO) || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gettxoutsetinfo&amp;lt;/code&amp;gt; ||  || Returns statistics about the unspent transaction output (UTXO) set || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;[[getwork]]&amp;lt;/code&amp;gt; || [data] || If [data] is not specified, returns formatted hash data to work on:&lt;br /&gt;
* &amp;quot;midstate&amp;quot; : precomputed hash state after hashing the first half of the data&lt;br /&gt;
* &amp;quot;data&amp;quot; : block data&lt;br /&gt;
* &amp;quot;hash1&amp;quot; : formatted hash buffer for second hash&lt;br /&gt;
* &amp;quot;target&amp;quot; : little endian hash target&lt;br /&gt;
If [data] is specified, tries to solve the block and returns true if it was successful. &lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;help&amp;lt;/code&amp;gt; || [command] || List commands, or get help for a command. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;importprivkey&amp;lt;/code&amp;gt; || &amp;lt;bitcoinprivkey&amp;gt; [label] [rescan=true]|| Adds a private key (as returned by dumpprivkey) to your wallet. This may take a while, as a [[How_to_import_private_keys#Import_Private_key.28s.29|rescan]] is done, looking for existing transactions. &#039;&#039;&#039;Optional [rescan] parameter added in 0.8.0.&#039;&#039;&#039; Note: There&#039;s no need to import public key, as in [[Elliptic_Curve_Digital_Signature_Algorithm|ECDSA]] (unlike RSA) this can be computed from private key. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;invalidateblock&amp;lt;/code&amp;gt; || &amp;lt;hash&amp;gt; || Permanently marks a block as invalid, as if it violated a consensus rule.|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;keypoolrefill&amp;lt;/code&amp;gt; || || Fills the keypool, requires wallet passphrase to be set. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listaccounts&amp;lt;/code&amp;gt; || [minconf=1] || Returns Object that has account names as keys, account balances as values. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listaddressgroupings&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns all addresses in the wallet and info used for coincontrol. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listreceivedbyaccount&amp;lt;/code&amp;gt; || [minconf=1] [includeempty=false] || Returns an array of objects containing:&lt;br /&gt;
* &amp;quot;account&amp;quot; : the account of the receiving addresses&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount received by addresses with this account&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; : number of confirmations of the most recent transaction included&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listreceivedbyaddress&amp;lt;/code&amp;gt; || [minconf=1] [includeempty=false] || Returns an array of objects containing:&lt;br /&gt;
* &amp;quot;address&amp;quot; : receiving address&lt;br /&gt;
* &amp;quot;account&amp;quot; : the account of the receiving address&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount received by the address&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; : number of confirmations of the most recent transaction included&lt;br /&gt;
To get a list of accounts on the system, execute bitcoind listreceivedbyaddress 0 true&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listsinceblock&amp;lt;/code&amp;gt; || [blockhash] [target-confirmations] || Get all transactions in blocks since block [blockhash], or all transactions if omitted. [target-confirmations] intentionally &#039;&#039;&#039;does not&#039;&#039;&#039; affect the list of returned transactions, but only affects the returned &amp;quot;lastblock&amp;quot; value.[https://github.com/bitcoin/bitcoin/pull/199#issuecomment-1514952] || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listtransactions&amp;lt;/code&amp;gt; || [account] [count=10] [from=0] || Returns up to [count] most recent transactions skipping the first [from] transactions for account [account]. If [account] not provided it&#039;ll return recent transactions from all accounts.&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listunspent&amp;lt;/code&amp;gt; || [minconf=1] [maxconf=999999] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Returns array of unspent transaction inputs in the wallet. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listlockunspent&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Returns list of temporarily unspendable outputs&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;lockunspent&amp;lt;/code&amp;gt; || &amp;lt;unlock?&amp;gt; [array-of-objects] || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Updates list of temporarily unspendable outputs&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;move&amp;lt;/code&amp;gt; || &amp;lt;fromaccount&amp;gt; &amp;lt;toaccount&amp;gt; &amp;lt;amount&amp;gt; [minconf=1] [comment] || Move from one account in your wallet to another || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendfrom&amp;lt;/code&amp;gt; || &amp;lt;fromaccount&amp;gt; &amp;lt;tobitcoinaddress&amp;gt; &amp;lt;amount&amp;gt; [minconf=1] [comment] [comment-to] || &amp;lt;amount&amp;gt; is a real and is rounded to 8 decimal places. Will send the given amount to the given address, ensuring the account has a valid balance using [minconf] confirmations. Returns the transaction ID if successful (not in JSON object). || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendmany&amp;lt;/code&amp;gt; || &amp;lt;fromaccount&amp;gt; {address:amount,...} [minconf=1] [comment] || amounts are double-precision floating point numbers || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendrawtransaction&amp;lt;/code&amp;gt; || &amp;lt;hexstring&amp;gt; || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Submits [[Raw Transactions|raw transaction]] (serialized, hex-encoded) to local node and network. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendtoaddress&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;amount&amp;gt; [comment] [comment-to] || &amp;lt;amount&amp;gt; is a real and is rounded to 8 decimal places. Returns the transaction ID &amp;lt;txid&amp;gt; if successful. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;setaccount&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;account&amp;gt; || Sets the account associated with the given address. Assigning address that is already assigned to the same account will create a new address associated with that account. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;setgenerate&amp;lt;/code&amp;gt; || &amp;lt;generate&amp;gt; [genproclimit] || &amp;lt;generate&amp;gt; is true or false to turn generation on or off.&amp;lt;br/&amp;gt;Generation is limited to [genproclimit] processors, -1 is unlimited. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;settxfee&amp;lt;/code&amp;gt; || &amp;lt;amount&amp;gt; || &amp;lt;amount&amp;gt; is a real and is rounded to the nearest 0.00000001 || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;signmessage&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;message&amp;gt; || Sign a message with the private key of an address. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;signrawtransaction&amp;lt;/code&amp;gt; || &amp;lt;hexstring&amp;gt; [{&amp;quot;txid&amp;quot;:txid,&amp;quot;vout&amp;quot;:n,&amp;quot;scriptPubKey&amp;quot;:hex},...] [&amp;lt;privatekey1&amp;gt;,...] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Adds signatures to a [[Raw Transactions|raw transaction]] and returns the resulting raw transaction. || Y/N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;stop&amp;lt;/code&amp;gt; || || Stop bitcoin server. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;submitblock&amp;lt;/code&amp;gt; || &amp;lt;hex data&amp;gt; [optional-params-obj] || Attempts to submit new block to network. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;validateaddress&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; || Return information about &amp;lt;bitcoinaddress&amp;gt;. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;verifymessage&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;signature&amp;gt; &amp;lt;message&amp;gt; || Verify a signed message. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;walletlock&amp;lt;/code&amp;gt; ||  || Removes the wallet encryption key from memory, locking the wallet. After calling this method,  you will need to call walletpassphrase again before being able to call any methods which require the wallet to be unlocked. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;walletpassphrase&amp;lt;/code&amp;gt; || &amp;lt;passphrase&amp;gt; &amp;lt;timeout&amp;gt; || Stores the wallet decryption key in memory for &amp;lt;timeout&amp;gt; seconds. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;walletpassphrasechange&amp;lt;/code&amp;gt; || &amp;lt;oldpassphrase&amp;gt; &amp;lt;newpassphrase&amp;gt; || Changes the wallet passphrase from &amp;lt;oldpassphrase&amp;gt; to &amp;lt;newpassphrase&amp;gt;. || N&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Error Codes==&lt;br /&gt;
&lt;br /&gt;
See [https://github.com/bitcoin/bitcoin/blob/62f2d769e45043c1f262ed45babb70fe237ad2bb/src/rpc/protocol.h#L30 rpcprotocol.h] for the list of error codes and their meanings.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Original Bitcoin client]]&lt;br /&gt;
* [[Running Bitcoin]]&lt;br /&gt;
* [[Protocol specification]]&lt;br /&gt;
* [[API reference (JSON-RPC)]]&lt;br /&gt;
* [[Lazy_API]]&lt;br /&gt;
* [[Elis-API]] - A more detailed version of this page - for developers!&lt;br /&gt;
* [http://code.gogulski.com/bitcoin-php/class_bitcoin_client.html PHP BitcoinClient Class Reference]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
&lt;br /&gt;
{{Bitcoin Core documentation}}&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Original_Bitcoin_client/API_calls_list&amp;diff=64116</id>
		<title>Original Bitcoin client/API calls list</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Original_Bitcoin_client/API_calls_list&amp;diff=64116"/>
		<updated>2017-10-23T00:25:42Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: /* Full list */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bitcoin API call list (as of version 0.8.0)&lt;br /&gt;
&lt;br /&gt;
Note: up-to-date API reference can be [https://bitcoin.org/en/developer-reference#bitcoin-core-apis found here].&lt;br /&gt;
&lt;br /&gt;
== Common operations ==&lt;br /&gt;
&lt;br /&gt;
=== Listing my bitcoin addresses ===&lt;br /&gt;
&lt;br /&gt;
Listing the bitcoin [[address|addresses]] in your wallet is easily done via &#039;&#039;listreceivedbyaddress&#039;&#039;. It normally lists only addresses which already have received transactions, however you can list all the addresses by setting the first argument to 0, and the second one to true.&lt;br /&gt;
&lt;br /&gt;
[[accounts explained|Accounts]] are used to organize addresses.&lt;br /&gt;
&lt;br /&gt;
== Full list ==&lt;br /&gt;
&lt;br /&gt;
Required arguments are denoted inside &amp;amp;lt; and &amp;amp;gt; Optional arguments are inside [ and ].&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Command !! Parameters !! Description !! Requires unlocked wallet? (v0.4.0+)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;addmultisigaddress&amp;lt;/code&amp;gt; || &amp;lt;nrequired&amp;gt; &amp;lt;&#039;[&amp;quot;key&amp;quot;,&amp;quot;key&amp;quot;]&#039;&amp;gt; [account] || Add a nrequired-to-sign multisignature address to the wallet. Each key is a bitcoin address or hex-encoded public key. If [account] is specified, assign address to [account]. Returns a string containing the address. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;addnode&amp;lt;/code&amp;gt; || &amp;lt;node&amp;gt; &amp;lt;add/remove/onetry&amp;gt; || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Attempts add or remove &amp;lt;node&amp;gt; from the addnode list or try a connection to &amp;lt;node&amp;gt; once. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;backupwallet&amp;lt;/code&amp;gt; || &amp;lt;destination&amp;gt; || Safely copies wallet.dat to destination, which can be a directory or a path with filename. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;createmultisig&amp;lt;/code&amp;gt; || &amp;lt;nrequired&amp;gt; &amp;lt;&#039;[&amp;quot;key,&amp;quot;key&amp;quot;]&#039;&amp;gt; || Creates a multi-signature address and returns a json object ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;createrawtransaction&amp;lt;/code&amp;gt; || [{&amp;quot;txid&amp;quot;:txid,&amp;quot;vout&amp;quot;:n},...] {address:amount,...} || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Creates a [[Raw Transactions|raw transaction]] spending given inputs. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;decoderawtransaction&amp;lt;/code&amp;gt; || &amp;lt;hex string&amp;gt; || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Produces a human-readable JSON object for a [[Raw Transactions|raw transaction]]. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;dumpprivkey&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; || Reveals the private key corresponding to &amp;lt;bitcoinaddress&amp;gt; || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;dumpwallet&amp;lt;/code&amp;gt; || &amp;lt;filename&amp;gt; || Exports all wallet private keys to file || &amp;gt;= 0.13.0&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;encryptwallet&amp;lt;/code&amp;gt; || &amp;lt;passphrase&amp;gt; || Encrypts the wallet with &amp;lt;passphrase&amp;gt;. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaccount&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; || Returns the account associated with the given address. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaccountaddress&amp;lt;/code&amp;gt; || &amp;lt;account&amp;gt; || Returns the current bitcoin address for receiving payments to this account. If &amp;lt;account&amp;gt; does not exist, it will be created along with an associated new address that will be returned. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaddednodeinfo&amp;lt;/code&amp;gt; || &amp;lt;dns&amp;gt; [node] || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Returns information about the given added node, or all added nodes&lt;br /&gt;
(note that onetry addnodes are not listed here)&lt;br /&gt;
If dns is false, only a list of added nodes will be provided,&lt;br /&gt;
otherwise connected information will also be available.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getaddressesbyaccount&amp;lt;/code&amp;gt; || &amp;lt;account&amp;gt; || Returns the list of addresses for the given account. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getbalance&amp;lt;/code&amp;gt; || [account] [minconf=1] || If [account] is not specified, returns the server&#039;s total available balance.&amp;lt;br/&amp;gt;If [account] is specified, returns the balance in the account. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getbestblockhash&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.9&#039;&#039;&#039; Returns the hash of the best (tip) block in the longest block chain. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblock&amp;lt;/code&amp;gt; || &amp;lt;hash&amp;gt; || Returns information about the block with the given hash. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblockcount&amp;lt;/code&amp;gt; || || Returns the number of blocks in the longest block chain. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblockhash&amp;lt;/code&amp;gt; || &amp;lt;index&amp;gt; || Returns hash of block in best-block-chain at &amp;lt;index&amp;gt;; index 0 is the [[genesis block]] || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblocknumber&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;Deprecated&#039;&#039;&#039;. &#039;&#039;&#039;Removed in version 0.7&#039;&#039;&#039;. Use getblockcount. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getblocktemplate&amp;lt;/code&amp;gt; || [params] || Returns data needed to construct a block to work on.  See [[ BIP_0022]] for more info on params.|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getconnectioncount&amp;lt;/code&amp;gt; || || Returns the number of connections to other nodes. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getdifficulty&amp;lt;/code&amp;gt; || || Returns the proof-of-work difficulty as a multiple of the minimum difficulty. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getgenerate&amp;lt;/code&amp;gt; || || Returns true or false whether bitcoind is currently generating hashes || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gethashespersec&amp;lt;/code&amp;gt; || || Returns a recent hashes per second performance measurement while generating. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getinfo&amp;lt;/code&amp;gt; || || Returns an object containing various state info. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getmemorypool&amp;lt;/code&amp;gt; || [data] || &#039;&#039;&#039;Replaced in v0.7.0 with getblocktemplate, submitblock, getrawmempool&#039;&#039;&#039; || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getmininginfo&amp;lt;/code&amp;gt; || || Returns an object containing mining-related information:&lt;br /&gt;
* blocks&lt;br /&gt;
* currentblocksize&lt;br /&gt;
* currentblocktx&lt;br /&gt;
* difficulty&lt;br /&gt;
* errors&lt;br /&gt;
* generate&lt;br /&gt;
* genproclimit&lt;br /&gt;
* hashespersec&lt;br /&gt;
* pooledtx&lt;br /&gt;
* testnet&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getnewaddress&amp;lt;/code&amp;gt; || [account] || Returns a new bitcoin address for receiving payments.  If [account] is specified payments received with the address will be credited to [account]. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getpeerinfo&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns data about each connected node. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getrawchangeaddress&amp;lt;/code&amp;gt; || [account]|| &#039;&#039;&#039;version 0.9&#039;&#039;&#039; Returns a new Bitcoin address, for receiving change.  This is for use with raw transactions, NOT normal use. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getrawmempool&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns all transaction ids in memory pool || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getrawtransaction&amp;lt;/code&amp;gt; || &amp;lt;txid&amp;gt; [verbose=0] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Returns [[Raw Transactions|raw transaction]] representation for given transaction id. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getreceivedbyaccount&amp;lt;/code&amp;gt; || [account] [minconf=1] || Returns the total amount received by addresses with [account] in transactions with at least [minconf] confirmations. If [account] not provided return will include all transactions to all accounts. (version 0.3.24) || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;getreceivedbyaddress&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; [minconf=1] || Returns the amount received by &amp;lt;bitcoinaddress&amp;gt; in transactions with at least [minconf] confirmations. It correctly handles the case where someone has sent to the address in multiple transactions. Keep in mind that addresses are only ever used for receiving transactions. Works only for addresses in the local wallet, external addresses will always show 0. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gettransaction&amp;lt;/code&amp;gt; || &amp;lt;txid&amp;gt; || Returns an object about the given transaction containing:&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount of the transaction&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; :  number of confirmations of the transaction&lt;br /&gt;
* &amp;quot;txid&amp;quot; : the transaction ID&lt;br /&gt;
* &amp;quot;time&amp;quot; : time associated with the transaction&amp;lt;ref&amp;gt;From block timestamp, unless transaction was already in memory pool then the local time when the client added the transaction to its memory pool&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* &amp;quot;details&amp;quot; - An array of objects containing:&lt;br /&gt;
** &amp;quot;account&amp;quot;&lt;br /&gt;
** &amp;quot;address&amp;quot;&lt;br /&gt;
** &amp;quot;category&amp;quot;&lt;br /&gt;
** &amp;quot;amount&amp;quot;&lt;br /&gt;
** &amp;quot;fee&amp;quot;&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gettxout&amp;lt;/code&amp;gt; || &amp;lt;txid&amp;gt; &amp;lt;n&amp;gt; [includemempool=true] || Returns details about an unspent transaction output (UTXO) || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;gettxoutsetinfo&amp;lt;/code&amp;gt; ||  || Returns statistics about the unspent transaction output (UTXO) set || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;[[getwork]]&amp;lt;/code&amp;gt; || [data] || If [data] is not specified, returns formatted hash data to work on:&lt;br /&gt;
* &amp;quot;midstate&amp;quot; : precomputed hash state after hashing the first half of the data&lt;br /&gt;
* &amp;quot;data&amp;quot; : block data&lt;br /&gt;
* &amp;quot;hash1&amp;quot; : formatted hash buffer for second hash&lt;br /&gt;
* &amp;quot;target&amp;quot; : little endian hash target&lt;br /&gt;
If [data] is specified, tries to solve the block and returns true if it was successful. &lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;help&amp;lt;/code&amp;gt; || [command] || List commands, or get help for a command. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;importprivkey&amp;lt;/code&amp;gt; || &amp;lt;bitcoinprivkey&amp;gt; [label] [rescan=true]|| Adds a private key (as returned by dumpprivkey) to your wallet. This may take a while, as a [[How_to_import_private_keys#Import_Private_key.28s.29|rescan]] is done, looking for existing transactions. &#039;&#039;&#039;Optional [rescan] parameter added in 0.8.0.&#039;&#039;&#039; Note: There&#039;s no need to import public key, as in [[Elliptic_Curve_Digital_Signature_Algorithm|ECDSA]] (unlike RSA) this can be computed from private key. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;invalidateblock&amp;lt;/code&amp;gt; || &amp;lt;hash&amp;gt; || Permanently marks a block as invalid, as if it violated a consensus rule.|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;keypoolrefill&amp;lt;/code&amp;gt; || || Fills the keypool, requires wallet passphrase to be set. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listaccounts&amp;lt;/code&amp;gt; || [minconf=1] || Returns Object that has account names as keys, account balances as values. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listaddressgroupings&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns all addresses in the wallet and info used for coincontrol. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listreceivedbyaccount&amp;lt;/code&amp;gt; || [minconf=1] [includeempty=false] || Returns an array of objects containing:&lt;br /&gt;
* &amp;quot;account&amp;quot; : the account of the receiving addresses&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount received by addresses with this account&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; : number of confirmations of the most recent transaction included&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listreceivedbyaddress&amp;lt;/code&amp;gt; || [minconf=1] [includeempty=false] || Returns an array of objects containing:&lt;br /&gt;
* &amp;quot;address&amp;quot; : receiving address&lt;br /&gt;
* &amp;quot;account&amp;quot; : the account of the receiving address&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount received by the address&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; : number of confirmations of the most recent transaction included&lt;br /&gt;
To get a list of accounts on the system, execute bitcoind listreceivedbyaddress 0 true&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listsinceblock&amp;lt;/code&amp;gt; || [blockhash] [target-confirmations] || Get all transactions in blocks since block [blockhash], or all transactions if omitted. [target-confirmations] intentionally &#039;&#039;&#039;does not&#039;&#039;&#039; affect the list of returned transactions, but only affects the returned &amp;quot;lastblock&amp;quot; value.[https://github.com/bitcoin/bitcoin/pull/199#issuecomment-1514952] || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listtransactions&amp;lt;/code&amp;gt; || [account] [count=10] [from=0] || Returns up to [count] most recent transactions skipping the first [from] transactions for account [account]. If [account] not provided it&#039;ll return recent transactions from all accounts.&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listunspent&amp;lt;/code&amp;gt; || [minconf=1] [maxconf=999999] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Returns array of unspent transaction inputs in the wallet. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;listlockunspent&amp;lt;/code&amp;gt; || || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Returns list of temporarily unspendable outputs&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;lockunspent&amp;lt;/code&amp;gt; || &amp;lt;unlock?&amp;gt; [array-of-objects] || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Updates list of temporarily unspendable outputs&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;move&amp;lt;/code&amp;gt; || &amp;lt;fromaccount&amp;gt; &amp;lt;toaccount&amp;gt; &amp;lt;amount&amp;gt; [minconf=1] [comment] || Move from one account in your wallet to another || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendfrom&amp;lt;/code&amp;gt; || &amp;lt;fromaccount&amp;gt; &amp;lt;tobitcoinaddress&amp;gt; &amp;lt;amount&amp;gt; [minconf=1] [comment] [comment-to] || &amp;lt;amount&amp;gt; is a real and is rounded to 8 decimal places. Will send the given amount to the given address, ensuring the account has a valid balance using [minconf] confirmations. Returns the transaction ID if successful (not in JSON object). || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendmany&amp;lt;/code&amp;gt; || &amp;lt;fromaccount&amp;gt; {address:amount,...} [minconf=1] [comment] || amounts are double-precision floating point numbers || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendrawtransaction&amp;lt;/code&amp;gt; || &amp;lt;hexstring&amp;gt; || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Submits [[Raw Transactions|raw transaction]] (serialized, hex-encoded) to local node and network. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sendtoaddress&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;amount&amp;gt; [comment] [comment-to] || &amp;lt;amount&amp;gt; is a real and is rounded to 8 decimal places. Returns the transaction ID &amp;lt;txid&amp;gt; if successful. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;setaccount&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;account&amp;gt; || Sets the account associated with the given address. Assigning address that is already assigned to the same account will create a new address associated with that account. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;setgenerate&amp;lt;/code&amp;gt; || &amp;lt;generate&amp;gt; [genproclimit] || &amp;lt;generate&amp;gt; is true or false to turn generation on or off.&amp;lt;br/&amp;gt;Generation is limited to [genproclimit] processors, -1 is unlimited. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;settxfee&amp;lt;/code&amp;gt; || &amp;lt;amount&amp;gt; || &amp;lt;amount&amp;gt; is a real and is rounded to the nearest 0.00000001 || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;signmessage&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;message&amp;gt; || Sign a message with the private key of an address. || Y&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;signrawtransaction&amp;lt;/code&amp;gt; || &amp;lt;hexstring&amp;gt; [{&amp;quot;txid&amp;quot;:txid,&amp;quot;vout&amp;quot;:n,&amp;quot;scriptPubKey&amp;quot;:hex},...] [&amp;lt;privatekey1&amp;gt;,...] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Adds signatures to a [[Raw Transactions|raw transaction]] and returns the resulting raw transaction. || Y/N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;stop&amp;lt;/code&amp;gt; || || Stop bitcoin server. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;submitblock&amp;lt;/code&amp;gt; || &amp;lt;hex data&amp;gt; [optional-params-obj] || Attempts to submit new block to network. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;validateaddress&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; || Return information about &amp;lt;bitcoinaddress&amp;gt;. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;verifymessage&amp;lt;/code&amp;gt; || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;signature&amp;gt; &amp;lt;message&amp;gt; || Verify a signed message. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;walletlock&amp;lt;/code&amp;gt; ||  || Removes the wallet encryption key from memory, locking the wallet. After calling this method,  you will need to call walletpassphrase again before being able to call any methods which require the wallet to be unlocked. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;walletpassphrase&amp;lt;/code&amp;gt; || &amp;lt;passphrase&amp;gt; &amp;lt;timeout&amp;gt; || Stores the wallet decryption key in memory for &amp;lt;timeout&amp;gt; seconds. || N&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;walletpassphrasechange&amp;lt;/code&amp;gt; || &amp;lt;oldpassphrase&amp;gt; &amp;lt;newpassphrase&amp;gt; || Changes the wallet passphrase from &amp;lt;oldpassphrase&amp;gt; to &amp;lt;newpassphrase&amp;gt;. || N&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Error Codes==&lt;br /&gt;
&lt;br /&gt;
See [https://github.com/bitcoin/bitcoin/blob/62f2d769e45043c1f262ed45babb70fe237ad2bb/src/rpc/protocol.h#L30 rpcprotocol.h] for the list of error codes and their meanings.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Original Bitcoin client]]&lt;br /&gt;
* [[Running Bitcoin]]&lt;br /&gt;
* [[Protocol specification]]&lt;br /&gt;
* [[API reference (JSON-RPC)]]&lt;br /&gt;
* [[Lazy_API]]&lt;br /&gt;
* [[Elis-API]] - A more detailed version of this page - for developers!&lt;br /&gt;
* [http://code.gogulski.com/bitcoin-php/class_bitcoin_client.html PHP BitcoinClient Class Reference]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
&lt;br /&gt;
{{Bitcoin Core documentation}}&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BX.in.th&amp;diff=61716</id>
		<title>BX.in.th</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BX.in.th&amp;diff=61716"/>
		<updated>2016-10-17T16:55:01Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: Created page with &amp;quot;BX.in.th is a Thai based bitcoin exchange operated by Bitcoin Co. Ltd. (Thailand).  Website: https://bx.in.th/&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;BX.in.th is a Thai based bitcoin exchange operated by Bitcoin Co. Ltd. (Thailand).&lt;br /&gt;
&lt;br /&gt;
Website: https://bx.in.th/&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Delete2&amp;diff=61715</id>
		<title>Delete2</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Delete2&amp;diff=61715"/>
		<updated>2016-10-17T16:54:04Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: Added bx.in.th&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--&lt;br /&gt;
* All listed exchanges must have their own pages. No external links are to be put on this page.&lt;br /&gt;
* Exchanges are to be listed by monthly trading volume (in BTC) from highest to lowest.&lt;br /&gt;
* To be listed, monthly volume must be at least 50 BTC. (negotiable for fledgling engines)&lt;br /&gt;
* 30d volume is to be listed to the nearest bitcoin, and does not include volume for cryptocoins. Fiat only.&lt;br /&gt;
* No, you can&#039;t put your logo on the table.&lt;br /&gt;
* Notes must be brief. No sales pitch.&lt;br /&gt;
* This is not for SLL/GPL/etc exchanges.&lt;br /&gt;
* This is not for LTC/NMC/etc exchanges.&lt;br /&gt;
* Cite 30d volume and trading fee.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{exchange}}&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width: 100%; text-align: center; font-size: smaller; &amp;quot;&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | Service&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | 30d Volume / kBTC&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | &lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | USD?&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | EUR?&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | GBP?&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | CNY?&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | Other&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | Holds&amp;lt;br/&amp;gt;BTC?&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | Holds fiat?&lt;br /&gt;
! style=&amp;quot;width: 1;&amp;quot; | Trading&amp;lt;br/&amp;gt;fee&lt;br /&gt;
! Margin&amp;lt;br/&amp;gt;trading&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[Coinbase Exchange]]&lt;br /&gt;
| 240&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://bitcoinity.org/markets/list?currency=ALL&amp;amp;span=30d&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| CAD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| Maker-Taker 0.00% - 0.25%&amp;lt;ref&amp;gt;https://support.coinbase.com/customer/en/portal/articles/1826608-what-are-the-fees-for-using-coinbase-exchange-&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitstamp]]&lt;br /&gt;
| 222&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/bitstampUSD.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{partial|Indirect}}&lt;br /&gt;
| {{partial|Indirect}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| CHF&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{partial|USD only}}&lt;br /&gt;
| 0.25%&amp;lt;ref&amp;gt;https://www.bitstamp.net/fee_schedule/&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]]&lt;br /&gt;
| 195&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/btcnCNY.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitfinex]]&lt;br /&gt;
| 184&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/bitfinexUSD.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.20%&amp;lt;ref&amp;gt;https://www.bitfinex.com/pages/fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC-e]]&lt;br /&gt;
| 98&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| RUB&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.20%&amp;lt;ref&amp;gt;https://btc-e.com/page/2&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[LakeBTC.com]]&lt;br /&gt;
| 93&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/lakeUSD.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| SEK&amp;lt;ref&amp;gt;https://www.lakebtc.com/p/6933?locale=en&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.50%&amp;lt;ref&amp;gt;https://www.lakebtc.com/s/fees?locale=en&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[CEX.IO]]&lt;br /&gt;
| 70&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://data.bitcoinity.org/markets/volume/30d?c=c&amp;amp;exchange=cex.io&amp;amp;t=a&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| RUB&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.2%&lt;br /&gt;
|&lt;br /&gt;
| Payment options: credit and debit cards, wire transfer, SEPA, Skrill. High liquidity, low spread. &lt;br /&gt;
|-&lt;br /&gt;
| [[Kraken]]&lt;br /&gt;
| 50&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
|&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.10% - 0.35%&amp;lt;ref&amp;gt;https://www.kraken.com/help/fees-and-pair-info&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[itBit]]&lt;br /&gt;
| 38&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/itbitUSD.html&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/itbitSGD.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| SGD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.20%&amp;lt;ref&amp;gt;https://itbit.desk.com/customer/portal/articles/1361304-what-are-the-trading-fees-rebates-&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcurex]]&lt;br /&gt;
| 22&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://bitcoincharts.com/markets/bitcurexPLN_trades.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| PLN&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.30%-0.48%&amp;lt;ref&amp;gt;https://bitcurex.com/page/fee&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|High limits for non-verified users. Accepting cash deposits. Merchant solutions. Proprietary security features. &lt;br /&gt;
|-&lt;br /&gt;
| [[ANX|Asia Nexgen]]&lt;br /&gt;
| 21&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| AUD, CAD, SGD, CHF, NZD, JPY&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.00%&amp;lt;ref&amp;gt;https://anxbtc.com/&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Coinsetter]]&lt;br /&gt;
| 23&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoinity.org/markets/list?currency=USD&amp;amp;span=30d&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| Maker-Taker 0.00-0.25%&amp;lt;ref&amp;gt;https://www.coinsetter.com/pricing&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| FIX &amp;amp; Websocket API Available, Maker-Taker, NY Bit-Licensed, 5X Margin Available, Insured Deposits&lt;br /&gt;
|-&lt;br /&gt;
| [[Gatecoin]]&lt;br /&gt;
| 20&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://www.cryptocoincharts.info/markets/info&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| HKD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.35% - 0.05%&amp;lt;ref&amp;gt;https://www.gatecoin.com/public/feeschedule&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| Hong-Kong regulated, SEPA deposits on European segregated accounts. Bank wire, Local Bank Transfers (Single Euro Payment Area, Hong Kong).&lt;br /&gt;
|-&lt;br /&gt;
| [[CAVIRTEX]]&lt;br /&gt;
| 16&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/virtexCAD.html&amp;lt;/ref&amp;gt; &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| CAD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
|0.30% - 0.8%&amp;lt;ref&amp;gt;https://www.cavirtex.com/fees&amp;lt;/ref&amp;gt; &lt;br /&gt;
|&lt;br /&gt;
| Deposit methods include: Interac, EFT, In-Person @ MoneyMart, Wire Transfer. Also offer LTC/CAD and BTC/LTC trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[Coinfloor]]&lt;br /&gt;
| 14&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://bitcoincharts.com/markets/coinfloorGBP_trades.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| PLN&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| Maker-Taker 0.00%-0.38%&amp;lt;ref&amp;gt;https://coinfloor.co.uk/fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|The most liquid UK bitcoin exchange. 100% multi-signature underground cold storage. Immediate bitcoin withdrawals up to 2 XBT from Advance Withdrawal fund. No bitcoin deposit or withdrawal fees. Minimum deposit amount 1000 EUR/GBP/PLN/USD.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coinsecure]]&lt;br /&gt;
| 0.877382&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://coinsecure.in/exchange_data&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| INR Only&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.3 %&lt;br /&gt;
|&lt;br /&gt;
| India based Bitcoin exchange.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coincano]]&lt;br /&gt;
| 0.01&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{No}}&lt;br /&gt;
| &lt;br /&gt;
| {{No}}&lt;br /&gt;
| {{No}}&lt;br /&gt;
| 5% Compared to Bitstamp&lt;br /&gt;
|&lt;br /&gt;
|Buying and selling bitcoin has never been this simple. 3 different memberships available to choose from. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitBay]]&lt;br /&gt;
| 12&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://bitcoincharts.com/markets/bitbayPLN_trades.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| PLN&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.25% - 0.43% &amp;lt;ref&amp;gt;https://bitbay.net/fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| Wire deposit fee: 0 PLN/0 USD/0 EUR/0 BTC. Wire withdrawal fee: 0.0002 BTC/0.005 LTC/1 PLN. Online deposits via: Zpay, Transferuj, OKPay. Online withdrawal via: SEPA, BlueCash, OKPay.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.pl]]&lt;br /&gt;
| 10&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://bitcoincharts.com/markets/bitmarketplPLN_trades.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| PLN&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| Maker-Taker 0.00%-0.45%&amp;lt;ref&amp;gt;https://www.bitmarket.pl/docs.php?file=pricing.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Leverage trading, margin swaps, powerful API, focus on excellent technology and security. Free deposits, LTC markets supported. &lt;br /&gt;
|-&lt;br /&gt;
| [[BTC Markets]]&lt;br /&gt;
| 9&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://btcmarkets.net&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| AUD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.10% - 0.85%&amp;lt;ref&amp;gt;https://btcmarkets.net/fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| No crypto deposit or withdrawal fees. [https://btcmarkets.net Buy Bitcoins] today via POLi and bank transfer. Also trade Ethereum and Litecoin. &lt;br /&gt;
|-&lt;br /&gt;
| [[Bitso]]&lt;br /&gt;
| 3&lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| MXN&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.10% - 1%&amp;lt;ref&amp;gt;https://bitso.com/fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| Instant bank deposits and withdrawals during banking hours&lt;br /&gt;
|-&lt;br /&gt;
| [[BX.in.th]]&lt;br /&gt;
| 9&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://bx.in.th/api/price/&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| THB&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.25%&amp;lt;ref&amp;gt;https://bx.in.th/info/fees/&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[CampBX]]&lt;br /&gt;
| 0.811&lt;br /&gt;
| &amp;lt;ref&amp;gt;http://bitcoincharts.com/markets/cbxUSD.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.55%&amp;lt;ref&amp;gt;https://campbx.com/faq.php&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Independent Reserve]]&lt;br /&gt;
| 0.600&lt;br /&gt;
| &amp;lt;ref&amp;gt;https://www.independentreserve.com/Market&amp;lt;/ref&amp;gt;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| AUD via BPAY (converted to USD) &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.50 %&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| [[CleverCoin]]&lt;br /&gt;
| 0.475&lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
|&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.30%&amp;lt;ref&amp;gt;https://www.clevercoin.com/en/feepertype&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| Netherlands based. French banking partner. Regulated.&lt;br /&gt;
|- &lt;br /&gt;
| [[BITLISH]]&lt;br /&gt;
| 0.250&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| RUB&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
|  Maker-Taker -0.10%-0.10%&amp;lt;ref&amp;gt;https://bitlish.com/about&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Gebbit]]&amp;lt;ref&amp;gt;https://gebbit.com&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
|&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.00 - 0.40%&lt;br /&gt;
|&lt;br /&gt;
| Polish based exchange, Bulk Order Feature.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCBear]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.20%&amp;lt;ref&amp;gt;https://btcbear.com/?p=fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| .95% of Bitcoins stored on cold storage wallet. Voucher , API available, PerfectMoney, AdvCash, Payeer.&lt;br /&gt;
|-&lt;br /&gt;
| [[Mimex]]&amp;lt;ref&amp;gt;https://mimex.net&amp;lt;/ref&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| AUD, CAD, JPY, SEK, NZD, HKD, SGD, CHF&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.3% - 0.6% (taker) 0% (maker)&amp;lt;ref&amp;gt;https://mimex.net/fee-schedule.php&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| £1 in, £4 out UK bank transfer fees. No domestic Australian bank fees. £/$29 international transfer fee. Free CryptoCapital transfers&lt;br /&gt;
|-&lt;br /&gt;
| [[LZF]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{soon}}&lt;br /&gt;
| {{soon}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.25%&amp;lt;ref&amp;gt;https://lzf.com&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| Only U.S.-based Bitcoin exchange to legally operate fiat markets in 49 States (and internationally); Mathematically-correct incentivized exchange; Orders accumulate royalties for participation; fatest USD withdrawals (15-minutes to bank)&lt;br /&gt;
|-&lt;br /&gt;
| [[1Bse]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| HKD, SGD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.15%&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[crxzone.com]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| USD, SGD, EUR&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.10% - 0.06%&amp;lt;ref&amp;gt;https://www.crxzone.com/services/fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| No crypto deposit or withdrawal fees. Load or Withdraw funds using other virtual currency like Okpay, Egopay, Perfect money. &lt;br /&gt;
|-&lt;br /&gt;
| [[Coinmate]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| CZK, PLN&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.05% maker, 0.35% taker&lt;br /&gt;
|&lt;br /&gt;
| Top trader rewards &amp;amp; Referal/affiliate commission of 50% fees for 6 months&amp;lt;ref&amp;gt;http://coinmate.io/fees&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[AltoCenter]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[BitBargain]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin-24]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.de]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[BitSource]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{partial|Indirect}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| PLN&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{partial|USD/EUR only}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Bittylicious]]&lt;br /&gt;
| 4&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.sx]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Fund US]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[bitNZ]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| NZD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[HITBTC]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[CCEDK]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &#039;&#039;Many&#039;&#039;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[CoinTouch]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &#039;&#039;Many&#039;&#039;&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| 0.00%&lt;br /&gt;
|&lt;br /&gt;
| Direct trading with two degrees of FB/G+ social connections.&lt;br /&gt;
|-&lt;br /&gt;
| [[Cryptonit]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
|&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.10% - 0.15%%&amp;lt;ref&amp;gt;https://www.cryptonit.net/fees-and-terms&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| Live trading. Http and SocketIO API. Free SEPA deposits and withdrawals. Low Credit Card and Paypal deposit fees.&lt;br /&gt;
|-&lt;br /&gt;
| [[e-CoinTrade.com]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[FYB-SG]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| SGD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[FYB-SE]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| SEK&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[LocalBitcoins]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &#039;&#039;Many&#039;&#039;&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[MoneypakTrader.com]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[OTC Exchange]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{partial|Paypal}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Rock Currency Exchange|Rock, The]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Vircurex]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[VirWoX]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{partial|Indirect}}&lt;br /&gt;
| {{partial|Indirect}}&lt;br /&gt;
| {{partial|Indirect}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| CHF&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{partial|SLL only}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[weExchange]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| AUD, CAD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[VCX]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
|&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| 0.0% &amp;lt;ref&amp;gt;https://www.vcx.exchange&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
| Live trading. 0% fees. Free SEPA deposit, no limit deposits and withdrawals, easy and fast verification.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitX]]&lt;br /&gt;
| 0.750&lt;br /&gt;
| &lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| {{no}}&lt;br /&gt;
| ZAR, IDR, MYR, NGN, SGD&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| {{yes}}&lt;br /&gt;
| Maker-Taker 0.00% - 1.00%&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
{{exchanges}}&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Cold_storage&amp;diff=55735</id>
		<title>Cold storage</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Cold_storage&amp;diff=55735"/>
		<updated>2015-03-30T08:26:22Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Cold storage&#039;&#039;&#039; in the context of Bitcoin refers to keeping a reserve of Bitcoins offline.&lt;br /&gt;
&lt;br /&gt;
For example, a Bitcoin exchange typically offers an instant withdrawal feature, and might be a steward over hundreds of thousands of Bitcoins.  To minimize the possibility that an intruder could steal the entire reserve in a security breach, the operator of the website follows a best practice by keeping the majority of the reserve in &#039;&#039;cold storage&#039;&#039;, or in other words, not present on the web server or any other computer.  The only amount kept on the server is the amount needed to cover anticipated withdrawals.&lt;br /&gt;
&lt;br /&gt;
Methods of cold storage include keeping bitcoins:&lt;br /&gt;
* On a USB drive or other data storage medium in a safe place (e.g. safe deposit box, safe)&lt;br /&gt;
* On a [[paper wallet]]&lt;br /&gt;
* On a bearer item such as a [[physical bitcoin]].&lt;br /&gt;
* Online, but on encrypted media where the encryption key is offline.&lt;br /&gt;
* Use a offline Bitcoin [[Hardware wallet]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Deep cold storage&#039;&#039;&#039; refers to keeping a reserve of Bitcoins offline, using a method that makes retrieving coins from storage significantly more difficult than sending them there.  This could be done for safety&#039;s sake, such as to prevent theft or robbery.&lt;br /&gt;
&lt;br /&gt;
Because Bitcoins can be sent to a wallet by anyone knowing the wallet address, it is trivial to put a wallet in cold storage but to keep a copy of the addresses needed to send funds to it.&lt;br /&gt;
&lt;br /&gt;
A simple example of deep cold storage is opening a safe deposit box and putting a USB stick containing an encrypted wallet file in it.  The public (sending) addresses can be used any time to send additional bitcoins to the wallet, but spending the bitcoins would require physical access to the box (in addition to knowledge of the encryption password).&lt;br /&gt;
&lt;br /&gt;
Deep cold storage would typically be used for holding large amounts of bitcoins, or for a trustee holding bitcoins on behalf of others.  In such a case, additional precautions should be taken beyond a simple example of a single safe deposit box.&lt;br /&gt;
* The box could be accessed by bank or maintenance personnel, so the contents of the box alone should not be sufficient to access the wallet.&lt;br /&gt;
* The box could be stolen or destroyed in a disaster, or the media could become unreadable, so the box should not contain the only copy of the wallet.&lt;br /&gt;
* The trustee could die or become incapacitated.  If access to the wallet or knowledge of its location is lost, or encryption passwords are lost, the bitcoins are gone forever.  Provisions should be made so that the box can be accessed by someone else as appropriate, including any encryption passwords.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[How to import private keys]]&lt;br /&gt;
* [[How to set up a secure offline savings wallet]]&lt;br /&gt;
* [http://codinginmysleep.com/bitcoin-cold-storage-in-plain-english Bitcoin Cold Storage In Plain English] by David Perry&lt;br /&gt;
* [https://blockchain.info/wallet/paper-tutorial Paper Wallet Tutorial] blockchain.info&lt;br /&gt;
* [http://www.offlineaddress.com/?site=about#security-risk Security of private key] offlineaddress.com&lt;br /&gt;
[[Category:Introduction]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin.co.th&amp;diff=46877</id>
		<title>Bitcoin.co.th</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin.co.th&amp;diff=46877"/>
		<updated>2014-04-29T08:10:33Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bitcoin Co. Ltd. is the first registered company in Thailand offering bitcoin services such as exchange and merchant services.&lt;br /&gt;
&lt;br /&gt;
In 2013 the company got considerable international news coverage when the Bank of Thailand advised them to stop Bitcoin services in Thailand.&lt;br /&gt;
&lt;br /&gt;
The company has since resumed operations in Thailand after a softening of position by the BoT.&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin.co.th&amp;diff=46876</id>
		<title>Bitcoin.co.th</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin.co.th&amp;diff=46876"/>
		<updated>2014-04-29T08:10:01Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: Created page with &amp;quot;Bitcoin Co. Ltd. is the first registered company in Thailand offering bitcoin services such as exchange and merchant services.  In 2013 the company go considerable news covera...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bitcoin Co. Ltd. is the first registered company in Thailand offering bitcoin services such as exchange and merchant services.&lt;br /&gt;
&lt;br /&gt;
In 2013 the company go considerable news coverage when the Bank of Thailand advised them to stop bitcoin services in Thailand.&lt;br /&gt;
&lt;br /&gt;
The company has since resumed operation in Thailand after a softening of position by the BoT.&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:How_to_set_up_a_secure_offline_savings_wallet&amp;diff=44752</id>
		<title>Talk:How to set up a secure offline savings wallet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:How_to_set_up_a_secure_offline_savings_wallet&amp;diff=44752"/>
		<updated>2014-03-05T14:14:53Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This isn&#039;t secure. The procedure for sending bitcoins involves connecting the offline wallet to the internet. This should not be necessary, and carries some risk (e.g. the livecd could be compromised or contain a trojen, or the O/S could contain a vulnerability). It should be possible to create the transaction offline, and then execute it on an online system. --[[User:Rebroad|Rebroad]] ([[User talk:Rebroad|talk]]) 14:27, 23 December 2012 (GMT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-------&lt;br /&gt;
Is this page a joke?  How is sending the wallet.dat via Email to 5 people &amp;quot;secure&amp;quot; and what is all this business about Wuala; uploading your wallet.dat to a online service....wtf?  All the stuff about Wuala and Email should be removed.&lt;br /&gt;
 [[User:Dave111223|Dave111223]] 9:14PM 2014-03-05&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:How_to_set_up_a_secure_offline_savings_wallet&amp;diff=44751</id>
		<title>Talk:How to set up a secure offline savings wallet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:How_to_set_up_a_secure_offline_savings_wallet&amp;diff=44751"/>
		<updated>2014-03-05T14:14:03Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This isn&#039;t secure. The procedure for sending bitcoins involves connecting the offline wallet to the internet. This should not be necessary, and carries some risk (e.g. the livecd could be compromised or contain a trojen, or the O/S could contain a vulnerability). It should be possible to create the transaction offline, and then execute it on an online system. --[[User:Rebroad|Rebroad]] ([[User talk:Rebroad|talk]]) 14:27, 23 December 2012 (GMT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-------&lt;br /&gt;
Is this page a joke?  How is sending the wallet.dat via Email to 5 people &amp;quot;secure&amp;quot; and what is all this business about Wuala; uploading your wallet.dat to a online service....wtf? [[User:Dave111223]]  All the stuff about Wuala and Email should be removed.&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Press.bitcoin.org/roadmap&amp;diff=36338</id>
		<title>Press.bitcoin.org/roadmap</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Press.bitcoin.org/roadmap&amp;diff=36338"/>
		<updated>2013-03-24T09:11:59Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: Created page with &amp;quot;Roadmap for the Bitcoin.org Press Center&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Roadmap for the [[Press.bitcoin.org|Bitcoin.org Press Center]]&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Press.bitcoin.org&amp;diff=36337</id>
		<title>Press.bitcoin.org</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Press.bitcoin.org&amp;diff=36337"/>
		<updated>2013-03-24T09:06:13Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: Created page with &amp;quot;This page shall serve as a meeting point for volunteers of the Bitcoin.org &amp;#039;&amp;#039;&amp;#039;Press Center&amp;#039;&amp;#039;&amp;#039; project.  == Project Goal: == Create and maintain a web resource for members of t...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page shall serve as a meeting point for volunteers of the Bitcoin.org &#039;&#039;&#039;Press Center&#039;&#039;&#039; project.&lt;br /&gt;
&lt;br /&gt;
== Project Goal: ==&lt;br /&gt;
Create and maintain a web resource for members of the press to find information about Bitcoin.&lt;br /&gt;
&lt;br /&gt;
== Resources: ==&lt;br /&gt;
* [[press.bitcoin.org/roadmap|Project Roadmap]]&lt;br /&gt;
&lt;br /&gt;
== Volunteer Contact List ==&lt;br /&gt;
* [mailto:joerg@room77.de Joerg Platzer]&lt;br /&gt;
* [mailto:saivann@gmail.com Saivann Carignan]&lt;br /&gt;
* [mailto:mike@plan99.net Mike Hearn]&lt;br /&gt;
* [mailto:moon@justmoon.net Stefan Thomas]&lt;br /&gt;
* [mailto:ak-ka@gmx.net ak-ka@gmx.net]&lt;br /&gt;
* [mailto:dave@advancedstyle.com David Barnes]&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=36105</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=36105"/>
		<updated>2013-03-13T14:27:16Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: /* Fixed Rate Exchanges &amp;amp; Others */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for buying bitcoins. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Warning: Please be careful with your money.  When sending money to an exchange or seller you are trusting that the operator will not abscond with your funds and that the operator maintains secure systems that protect against theft -- internal or external.  It is recommended that you obtain the real-world identity of the operator and ensure that sufficient recourse is available.  Exchanging or storing significant amounts of funds with exchanges is not recommended.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Major Exchanges==&lt;br /&gt;
&lt;br /&gt;
The least expensive methods for buying bitcoins involve transferring funds using a bank wire, ACH, bank transfer (ACH, EUR / SEPA).&lt;br /&gt;
&lt;br /&gt;
Exchanges are listed in alphabetical order.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-24]] || BTC&amp;lt;br/&amp;gt;USD ([[MtGox]] redeemable code)&amp;lt;br /&amp;gt;USD (VouchX redeemable code)&amp;lt;br /&amp;gt;USD (Credit card through LiqPay)&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;EUR ([[MtGox]] redeemable code)&amp;lt;br /&amp;gt;EUR (VouchX redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA wire)&amp;lt;br /&amp;gt;EUR (Sofort banking/Sofortuberweisung)&amp;lt;br /&amp;gt;EUR (GIROPay)&amp;lt;br /&amp;gt;GBP (International bank wire, converted to EUR)&amp;lt;br /&amp;gt;PLN (International bank wire, converted to EUR) || BTC&amp;lt;br/&amp;gt;USD (Bank wire transfer)&amp;lt;br /&amp;gt;USD ([[Skrill]]/Moneybookers)&amp;lt;br /&amp;gt;USD (VouchX redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA wire)&amp;lt;br /&amp;gt;EUR (VouchX redeemable code)&amp;lt;br /&amp;gt;EUR (Cash, via DHL) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-Central]] || BTC&amp;lt;br /&amp;gt;GBP (Bank transfer)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;International wire (any currency) || BTC&amp;lt;br /&amp;gt;GBP (Bank transfer)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR || {{Table Value Yes}} || [https://github.com/davout/bitcoin-central Open-source], community reviewed platform&amp;lt;br /&amp;gt;Available in French and English languages&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitfloor]] || BTC&amp;lt;br/&amp;gt;USD (bank wire transfer)&amp;lt;br /&amp;gt;USD (Cash deposit at Bank of America)&amp;lt;br /&amp;gt;USD (CapitalOne 360 P2P) || BTC&amp;lt;br/&amp;gt;USD (ACH, direct deposit) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[BitMe]] || BTC&amp;lt;br/&amp;gt;USD (Cash deposits at Chase)&amp;lt;br/&amp;gt;USD (Wire Transfer - US Only)&amp;lt;br /&amp;gt;USD (AurumXchange VouchX) || BTC&amp;lt;br/&amp;gt;USD (AurumXchange VouchX)&amp;lt;br/&amp;gt;USD (ACH / Direct Deposit)&amp;lt;br/&amp;gt;USD (Wire Transfer - US Only) || {{ Table Value Yes }} || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Liquidity provider discounts&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/bitme BitMe&#039;s GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://bitme.github.com/rest/ REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[bitNZ]] || BTC&amp;lt;br/&amp;gt;NZD (Cash depost as Westbank) || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitstamp]] || BTC&amp;lt;br /&amp;gt;BTC (Redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;USD (Intl wire)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;CHF || BTC&amp;lt;br /&amp;gt;BTC (Redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;USD (Intl wire)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;CHF || {{Table Value Yes}} || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || BTC&amp;lt;br /&amp;gt;BTC (BTC-e redeemable code)&amp;lt;br /&amp;gt;USD (Cash deposit at Post of Russia)&amp;lt;br /&amp;gt;USD (Cash deposit at banks including Privatbank, Savings Bank of Russia (Sberbank), RU/UA Terminals, &amp;amp; more)&amp;lt;br /&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa)&amp;lt;br /&amp;gt;USD (WebMoney - WMZ)&amp;lt;br /&amp;gt;USD (Yandex)&amp;lt;br /&amp;gt;USD (LiqPay)&amp;lt;br /&amp;gt;USD (Perfect Money)&amp;lt;br /&amp;gt;USD (QIWI)&amp;lt;br /&amp;gt;USD (OKPay)&amp;lt;br /&amp;gt;USD (RBK Money)&amp;lt;br /&amp;gt;USD (Ditial currencies including НСМЭП (NSMEP), Единый Кошелек (Unified Purse), TeleMoney, &amp;amp; more)&amp;lt;br /&amp;gt;USD (BTC-e Redeemable Code, available via BitInstant and AurumXChange)&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;RUB (QIWI)&amp;lt;br /&amp;gt;RUB (LiqPay)&amp;lt;br /&amp;gt;RUB (WebMoney-WMR)&amp;lt;br /&amp;gt;RUB (BTC-e Redeemable code)&amp;lt;br /&amp;gt;RUB (Bank transfer) || BTC&amp;lt;br/&amp;gt;BTC (BTC-e redeemble code)&amp;lt;br /&amp;gt;USD (Liberty Reserve)&amp;lt;br /&amp;gt;USD (Webmoney - WMZ)&amp;lt;br /&amp;gt;USD (Perfect Money)&amp;lt;br /&amp;gt;USD (LiqPay)&amp;lt;br /&amp;gt;USD (QIWI)&amp;lt;br /&amp;gt;USD (PayPal)&amp;lt;br /&amp;gt;USD (OKPay)&amp;lt;br /&amp;gt;USD (Payza/AlertPay)&amp;lt;br /&amp;gt;USD (Privat, Privat UAH)&amp;lt;br /&amp;gt;USD (Cash deposit into Savings Bank/Sberbank, Telebank, Alfa Bank)&amp;lt;br /&amp;gt;USD (BTC-e Redeemable Code)&amp;lt;br /&amp;gt;USD (International Wire Transfer)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;RUB (Cash delivery, possible in Moscow)&amp;lt;br /&amp;gt;RUB (QIWI)&amp;lt;br /&amp;gt;RUB (LiqPay)&amp;lt;br /&amp;gt;RUB (WebMoney WMR)&amp;lt;br /&amp;gt;RUB (Яндекс.Деньги Yandex)&amp;lt;br /&amp;gt;RUB (RBK Money)&amp;lt;br /&amp;gt;Cash deposit (into account at Сбербанка России!/Savings Bank/Sberbank, Телебанк (Telebank), and АльфаБанк (Alfa Bank)&amp;lt;br /&amp;gt;RUB (Transfer to credit card VISA &amp;amp; MasterCard)&amp;lt;br /&amp;gt;RUB (BTC-e Redeemable code)&amp;lt;br /&amp;gt;RUB (Bank transfer) || {{Table Value Yes}} || Language: English, Russian. Interkassa can be funded from Webmoney and many other methods.&amp;lt;br /&amp;gt;BitInstant Can be funding option includes QIWI, Cyberplat.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] (CBX) || BTC &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt;USD (P2P bank transfer at Chase, B&amp;amp;nbsp;of&amp;amp;nbsp;A, Wells Fargo and ING. Credited after three business days).&amp;lt;br /&amp;gt;USD (Personal Check)&amp;lt;br /&amp;gt;USD (USPS Postal money order, Canada Post money order) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br/&amp;gt;USD (ACH Direct Deposit)&amp;lt;br /&amp;gt;USD (USPS Postal Money Order)&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Security certification from McAfee&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Advanced trading options with AON/FOK/Market&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;STOPLOSS and Short-Selling in Pipeline&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Wallet API available &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; CBX Instant Bitcoin Transfers Feature &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Stoploss / Custom Order Expiry Date/Time &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; SMS (Text Message) Notifications &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Two-Factor Authentication &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Based in USA - Atlanta &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SG]] || BTC &amp;lt;br/&amp;gt; SGD(Internet Bank Transfer)&amp;lt;br/&amp;gt;SGD (Annonymous Cash Deposit at any UOB Cash Deposit Machine in Singapore).&amp;lt;br /&amp;gt; || BTC&amp;lt;br/&amp;gt;SGD(Internet Bank Transfer)&amp;lt;br/&amp;gt; ||  {{Table Value Yes}} || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; Based in Singapore &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[Intersango]] || BTC&amp;lt;br /&amp;gt;EUR (SEPA bank wire)&amp;lt;br /&amp;gt;PLN (Bank Wire) || BTC&amp;lt;br /&amp;gt;EUR (SEPA bank wire)&amp;lt;br /&amp;gt;PLN (Bank Wire) || {{Table Value Yes}} || Operated by the [https://bitcoinconsultancy.com/ BitcoinConsultancy] &amp;lt;br/&amp;gt; [https://intersango.com Intersango] is a completely custom trading platform built from the ground up with security, scalability and extensibility in mind. [https://bitcointalk.org/index.php?topic=43745.0 More Information]&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Boasts an [https://bitcoinconsultancy.com/wiki/index.php/Intersango/API ever expanding API].  Started out as [[Britcoin]].&lt;br /&gt;
|-&lt;br /&gt;
|  [[Kapiton.se]]  || BTC&amp;lt;br/&amp;gt;SEK (Bankgiro Bank Transfer) || BTC&amp;lt;br/&amp;gt;SEK (Bankgiro Bank Transfer) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer)&amp;lt;br /&amp;gt;BRL (Bank transfer - MoIP)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;BTC (Redeemable code)&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;USD ([[OKPay]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;GBP (Cash deposit, Barclays)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || BTC&amp;lt;br /&amp;gt;BTC (Redeemable code)&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Oldest running exchange. Higest daily volume. Respecting AML laws, Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Rock Currency Exchange]] || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla) || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla)  || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at Royal Bank, Bank of Montreal or ScotiaBank)&amp;lt;br /&amp;gt;CAD (Online bill payment)&amp;lt;br /&amp;gt;CAD (Wire transfer) || BTC&amp;lt;br/&amp;gt;CAD (direct deposit)&amp;lt;br /&amp;gt;CAD (Canada Xpress Post Bank Draft send by mail)&amp;lt;br /&amp;gt;CAD Payza (formerly AlertPay) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br/&amp;gt;USD,EUR,GBP (Credit &amp;amp; Debit cards via [[Skrill]]/Moneybookers)&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[paysafecard]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;USD ([[UKash]] vouchers) || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br /&amp;gt;USD,EUR,GBP ([[Skrill]]/Moneybookers)&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars.&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&lt;br /&gt;
bi&lt;br /&gt;
For smaller amounts, the options are limited due to bank transfer fees, conversion fees and transaction size restrictions. Options include:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.aurumxchange.com AurumXchange] ([[AurumXchange|info]]) || Market || USD,EUR,GBP || Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Liberty Reserve, Perfect Money, Pecunix, C-Gold, VouchX, CosmicPay and more. Sell and buy your Bitcoins through USD or GBP Wire, or SEPA EUR transfer.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitcoincanada.tk Bitcoincanada]  ([[bitcoin canada|info]]) || Market || CAD || Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Interac email transfer. Sell and buy your Bitcoins through Interac email transfer instantly. &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || Market || GBP || Quick transactions via Bank Transfer (fast payments support only), Pingit and Ukash. Deals happen between buyer and seller.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitcopia.com Bitcopia] ([[Bitcopia.com|info]]) || Fixed Rate || USD (Cash deposit) || Buy bitcoins via cash deposit at Wells Fargo, or send money via online banking with Wells Fargo. Instant quotes based on live Mt Gox prices.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || Market Rate || EUR (Multibanco) || Anonymous transactions. Pay the amount on any Portuguese ATM(MB) or homebanking service, we&#039;ll deduce our fee and buy the coins for you at market rate and send them very fast to your wallet. Only available in Portugal.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.coinmarket.co.nz Coin Market] || Fixed Rate || NZD (NZ Bank deposit/Cash) || Cash deposit or bank transfer to domestic New Zealand bank.  Cash payment to brokerage.  Guest checkout available.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bit Innovate]] || Fixed Rate || AUD, NZD (Cash deposit) || Australian Dollar cash deposit at any Commonwealth or Westpac Bank. New Zealand Dollar cash deposits at any ASB.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || Fixed Rate || USD, GBP, EUR, BRL, AUD, CAD, JPY, EUR, CHF, PLN, CZK, RON, RUB, SEK, NOK, DKK || Purchased through [[BitInstant]] (U.S., Brazil, and Russia), Barclay&#039;s Pingit or Bank Transfer (GBP), Instant Bank Transfer (EUR) or SMS or premium phone call from a mobile. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitInstant]] || Market Rate || USD (Cash deposit at banks, 7-11, Walmart, CVS, Moneygram locations)&amp;lt;br /&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;BRL (Cash deposit at Banco Rendimento or through Boleto)&amp;lt;br /&amp;gt;RUB (Cash deposit through Qiwi or Cyberplat) || Deposit cash at 700,000 locations around the world and have your Bitcoins within 30 minutes. Absolute fastest and easiest way to buy Bitcoins. &lt;br /&gt;
|-&lt;br /&gt;
| [[Coinapult]] || Fixed rate || Use [[BitInstant]] to use cash to purchase bitcoins sent to e-mail or SMS.  Choose &amp;quot;Bitcoin to e-mail&amp;quot; service and enter either e-mail or SMS. ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Coinbase]] || Fixed rate || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || Fixed Rate || ILS (NIS - New Israeli Shekel)&lt;br /&gt;
* via bank transfer&lt;br /&gt;
* via Bank HaDoar /Post Office Bank (instant transfer)&lt;br /&gt;
* via In Person&lt;br /&gt;
|| Buy and sell your Bitcoins within minutes in person. Get &amp;quot;same day&amp;quot; service using Bank HaDoar /Post Office Bank. Get &amp;quot;next day&amp;quot; service using Bank Transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Nordic]] || Fixed Rate&lt;br /&gt;
|&lt;br /&gt;
*EUR/DKK (SEPA and wire transfer)&lt;br /&gt;
*USD, EUR, GBP, DKK, SEK, NOK (Cash or check in the mail)&lt;br /&gt;
*AED, DZD, EGP, IQD, ILS, JOD, KWD, LGP, LYD, MRO, MYR, NGN, OMR, PKR, QAR, SAR, TRL, TZS, TND, YER ([[CashU]] card)&lt;br /&gt;
*MXN, EYU, BOB, BRL, COP, SYP, MAD, GHC, ZAR, CNY, CAD, and more ([[UKash]] voucher)&lt;br /&gt;
| For UKash, redeemed through CashU account.&lt;br /&gt;
|-&lt;br /&gt;
| [[Omnicoins]] || Fixed Rate || AUD (Cash deposit) || Deposit cash at any Commonwealth, NAB, or Westpac branch.&lt;br /&gt;
|-&lt;br /&gt;
| [[Spend Bitcoins]] || Fixed Rate || AUD (Cash deposit) || AUD cash deposit at NAB, Commonwealth Bank, Westpac and ANZ.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoinmylife.com/jml/buy-bitcoins BitcoinMyLife] &amp;lt;br /&amp;gt; ([[BitcoinMyLife|info]]) || Fixed Rate || EUR (SEPA bank transfer) || Simple and Safe.&amp;lt;br /&amp;gt;Pay first transaction fee with Twitter or Facebook post.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.de]] || Market || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;EUR (Liberty Reserve)&amp;lt;br /&amp;gt;EUR ([[Skrill]]/Moneybookers) || Varies (person to person)&amp;lt;br /&amp;gt;0.01 free Bitcoins for every new user&amp;lt;br /&amp;gt;eWallet&amp;lt;br /&amp;gt;Affiliate program&amp;lt;br /&amp;gt;Language: German, Englisch&amp;lt;br/&amp;gt; News&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoiny.cz]] || Market || CZK || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || Fixed Rate || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || Fixed Rate || USD (Liberty Reserve) || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || Market || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || [http://bitcoin-otc.com/vieworderbook.php Order Book] || Varies (person to person) || IRC trading marketplace will usually have people willing to deal for small and larger amounts using various payment methods, including [[PayPal]], [[Dwolla]], [[Linden Dollars]], etc.&lt;br /&gt;
|-&lt;br /&gt;
| [[Canadian Bitcoins]] || Fixed Rate || CAD (Cash - XpressPost or Dropoff)&amp;lt;br /&amp;gt;USD (Cash - Courier: UPS, FedEx, etc.) || For dropoff, office in Ottawa.&lt;br /&gt;
|-&lt;br /&gt;
| [https://dgtmkt.com Dgtmkt] ([[Dgtmkt|info]]) || Fixed Rate || Malaysian Ringgit (MYR)&amp;lt;br /&amp;gt;Online bank transfers (Maybank2U, CIMB, MEPS, etc)&amp;lt;br /&amp;gt;E-vouchers (Web Cash, Mobile Money) || Bitcoin merchant for Malaysians,. dealing in Malaysian Ringgit. Fully automated immediate transfers. https://dgtmkt.com&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || Fixed Rate || Bank Transfer: USD, AUD, CAD, JPY, EUR, CHF, GBP, PLN, CZK, RON, BGN, HRK, RUB, SEK, NOK, DKK, LTL, LVL&amp;lt;br /&amp;gt; Liberty Reserve&amp;lt;br /&amp;gt;Perfect Money&amp;lt;br /&amp;gt;Monetto&amp;lt;br /&amp;gt;OK Pay&amp;lt;br /&amp;gt;Cosmic Pay&amp;lt;br /&amp;gt;Pecunix&amp;lt;br /&amp;gt;C-Gold&amp;lt;br /&amp;gt;E-Pay Payments&amp;lt;br /&amp;gt;PayPal|| 122 accounts worldwide.&amp;lt;br /&amp;gt; Support in 30 languages&lt;br /&gt;
|-&lt;br /&gt;
| [[Nanaimo Gold]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || LR &amp;lt;--&amp;gt; Bitcoin exchange is automated&amp;lt;br /&amp;gt;For cash in the mail send USD, EUR, CAD, or GBP.  Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Argentina]] || Fixed Rate || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || Fixed Rate || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Fixed Rate || Cash, Webmoney&amp;lt;br /&amp;gt;Liberty Reserve USD || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || Fixed Rate || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Brasil]] || Fixed Rate || BRL (Brazilian Real)&amp;lt;br /&amp;gt;USD || Cash exchange&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || Fixed Rate || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Directory || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Directory || Enables person to person purchases and sales via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || Fixed Rate || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || Market || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Directory || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally || Find your local bitcoin dealer! With dynamic pricing with equations.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || Fixed Rate || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Dutch bank account holders receive Bitcoins within minutes and bank payments same day. Other European IBAN bank account transactions take one or two working days. Prices based on near real-time MtGox exchange price.&lt;br /&gt;
|-&lt;br /&gt;
| [[WM-Center]] || Fixed rate || BTC&amp;lt;br/&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP || 24/7/365 support in English, Spanish and Russian.&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || Fixed Rate || BTC&amp;lt;br/&amp;gt;INR (Cash deposit of Indian rupee)&amp;lt;br /&amp;gt;BDT (Cash deposit of Bangladeshi taka)&amp;lt;br /&amp;gt;NPR (Cash deposit of Nepalese rupee)&amp;lt;br /&amp;gt;MYR (Cash deposit of Malaysian ringitt)&amp;lt;br /&amp;gt;SGD (Cash deposit of Singaporean dollar)&amp;lt;br /&amp;gt;SGD (Net/Bank transfer)&amp;lt;br /&amp;gt;USD (Western Union, Moneygram, Citibank global funds transfer, OKPay)&amp;lt;br /&amp;gt;USD (Liberty Reserve, Mt. Gox redeemable code) || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || Market || BTC&amp;lt;br/&amp;gt;USD (PayPal) || bitcoinvend@gmail.com, market variable with commission, quote based, verified paypal account with anti scammer verification&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoins In Berlin]] || Fixed Rate || EUR (Cash in-the mail)&amp;lt;br /&amp;gt;EUR (Cash in-person trade)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;EUR (Mt. Gox [[redeemable code]])&amp;lt;br /&amp;gt;EUR (Western Union) || Cash in-the-mail is to a Berlin P.O. box. In-person trade is in Berlin.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.lojabitcoin.pt Loja Bitcoin] || Fixed Rate|| EUR (ATM/Multibanco, bank transfer, money order, cash) || Several payment methods like the Portuguese &amp;quot;Multibanco&amp;quot; (ATM), &amp;quot;Vale postal CTT&amp;quot; (money order by mail), bank transfer and cash (in some locations) - Portugal only at the moment&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Mang Sweeney]] || Fixed Rate || PHP (Cash)&amp;lt;br /&amp;gt;PHP (Cash deposit at bank) || Languages: English, Pinoy.&amp;lt;br /&amp;gt;PHP [https://localbitcoins.com/accounts/profile/mangsweeney cash trade method] in metro Manilla, Philappines.&lt;br /&gt;
|-&lt;br /&gt;
| [[mercaBit.eu]] || Fixed Rate|| EUR (Ukash)&amp;lt;br/&amp;gt;EUR (Hal-Cash)&amp;lt;br/&amp;gt;EUR (Neteller)&amp;lt;br/&amp;gt;|| Buy bitcoins with ukash and more&lt;br /&gt;
|-&lt;br /&gt;
| [http://buyBTC.cz buyBTC.cz] ([[buyBTC.cz|info]]) || Fixed Rate|| CZK (Domestic bank transfer)&amp;lt;br /&amp;gt;EUR (Bank transfer) || Buy bitcoins from the Czech Republic.&lt;br /&gt;
|-&lt;br /&gt;
| [http://InstaWire.com InstaWire.com] ([[InstaWire|info]]) || Fixed Rate|| EUR (SEPA bank transfer) || No sign-up, just enter the amount and a Bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [http://ZIGGAP.com ZIGGAP] ([[ZIGGAP|info]]) || Fixed Rate|| USD (Cash deposit at Chase, PNC bank)&amp;lt;br /&amp;gt;AUD (Cash deposit at National Australia Bank/NAB&amp;lt;br /&amp;gt;AUD (Online bill payment/POLI payments)&amp;lt;br /&amp;gt;USD (Moneygram, Western Union) || Buy from any Moneygram and Western Union location worldwide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitonic.nl Bitonic.nl] || Fixed Rate|| EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://swissbitcoins.ch swissbitcoins.ch] ([[Swissbitcoins|info]]) || Fixed Rate|| CHF (Swiss Bank Transfer) || Buy Bitcoins in Switzerland. No registration required. Enter Bitcoin address, wire money and get your bitcoins within 24 hours. &lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || Other || Credit card (except in the U.S.)  || Purchase bitcoins through this MMO casino with credit card, withdraw bitcoins (though a fee applies if withdrawn and no casino play.)&lt;br /&gt;
|-&lt;br /&gt;
| [https://buybitcoinbycreditcard.com buybitcoinbycreditcard.com] || Fixed Rate || JPY (Credit Card) || Buy bitcoins instantly with your credit card. No registration required. This site accept from the world.&lt;br /&gt;
|-&lt;br /&gt;
| [[OKPAY]] || Fixed Rate || BTC&amp;lt;br/&amp;gt;USD, EUR, GBP, RUB, CHF etc (Bank Wire Transfer)&amp;lt;br/&amp;gt;EUR (SofortBanking)&amp;lt;br/&amp;gt;USD, EUR (Liqpay)&amp;lt;br/&amp;gt;USD (CashU)&amp;lt;br/&amp;gt;USD, EUR, GBP, RUB, CHF etc (UWCFS)&amp;lt;br/&amp;gt;USD, RUB, UAH (Wallet1)&amp;lt;br/&amp;gt;RUB (Yandex Money)&amp;lt;br/&amp;gt;RUB (EasyPay)&amp;lt;br/&amp;gt;USD, EUR (CONTACT)&amp;lt;br/&amp;gt;USD, EUR (Migom)&amp;lt;br/&amp;gt;USD, EUR, CZK (Money Polo)&amp;lt;br/&amp;gt;USD, EUR (Intel Express)&amp;lt;br/&amp;gt;USD, EUR (Western Union via Exchange Partners)&amp;lt;br/&amp;gt;USD, EUR (Moneygram via Exchange Partners)&amp;lt;br/&amp;gt;USD, EUR, (Liberty Reserve via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 Bitcoins Direct] || Direct purchases, $1,000 and higher. || USD (Cash deposit at B of A, Wells Fargo or PNC Bank, max $3,000)&amp;lt;br /&amp;gt;USD (Bank wire, domestic or international), max $6,000 unless prior authorization&amp;lt;br /&amp;gt;USD (Liberty Reserve) || BTC || Inventory varies based on market conditions.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=89757.msg996082#msg996082 BitPay] ([[BitPay|info]]) || Direct purchases, $10,000 USD and higher || USD (Bank wire, domestic or international) || BTC || Contact for other payment methods. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other Financial Services==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Settled || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[MPEx]] || Buy / Sell / Exercise CALLs / PUTs, American style.&amp;lt;br /&amp;gt;52 strikes offered (by .5), current month + 2.&amp;lt;br /&amp;gt; No shorting available yet.|| BTC || BTC || Transactions encoded via amt.&amp;lt;br /&amp;gt; Must use non-rounding client&amp;lt;br /&amp;gt;(0.3.24 or later)&lt;br /&gt;
|-&lt;br /&gt;
| [https://vircurex.com Vircurex] || Buy / Sell Options&amp;lt;br/&amp;gt;Loan / Borrow || BTC, NMC, LTC, DVC, GG, I0C, IXC, SC || BTC, NMC, LTC, DVC, GG, I0C, IXC, SC ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Physical Bitcoins==&lt;br /&gt;
&lt;br /&gt;
Physical Bitcoins are bearer tokens that have an embedded redeemable digital bitcoin value if torn open.  While they are somewhat expensive if bought purely for the digital bitcoins, they are relatively easy to get, because they can be purchased with PayPal or credit card - payment methods not typically not accepted for pure digital bitcoin purchases.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.memorydealers.com Memory Dealers] || Casascius Physical Bitcoins || USD (PayPal/Credit Card) || &lt;br /&gt;
|-&lt;br /&gt;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &lt;br /&gt;
|-&lt;br /&gt;
| [https://www.giftcoin.net/card Bitcoin Gift Card] || Bitcioin Gift Card Physical Bitcoin Issued By GiftCoin || BTC || &lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitbills.com Bitbills] || Bitbills cards || BTC || Not taking orders as of Nov 2011.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Exchange Directories==&lt;br /&gt;
* [http://howtobuybitcoins.com/ HowToBuyBitcoins.com] &lt;br /&gt;
* [http://howtobuybitcoins.info/ HowToBuyBitcoins.info] &lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Digital_currencies|Digital Currencies]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Secure Trading]]&lt;br /&gt;
* [[Bitcoin Ladder]]&lt;br /&gt;
* [[:Category:Local|Local]] exchanges&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:Introduction]]&lt;br /&gt;
[[zh-cn:购买bitcoins]]&lt;br /&gt;
[[ru:Приобретение биткойнов]]&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=36104</id>
		<title>Selling bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=36104"/>
		<updated>2013-03-13T14:24:37Z</updated>

		<summary type="html">&lt;p&gt;Dave111223: /* Fixed Rate Exchanges &amp;amp; Others */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods for selling bitcoins.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Warning: Please be careful with your money.  When sending bitcoins to an exchange or other counterparty you are trusting that the counterparty will not abscond with your bitcoins and that the operator maintains secure systems that protect against theft -- internal or external.  It is recommended that you obtain the real-world identity of the counterparty and ensure that sufficient recourse is available.  Exchanging or storing significant funds with exchanges is not recommended.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
The best rates for selling medium to large amounts of bitcoins generally when withdrawing from an exchange using a cash method such as a bank transfer (ACH, EUR/SEPA).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[MtGox]] ||BTC&amp;lt;br/&amp;gt;BTC ([[Redeemable code]])&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;GBP (Cash deposit, Barclays)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || BTC&amp;lt;br /&amp;gt;BTC (Redeemable code)&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br/&amp;gt;USD,EUR,GBP (Credit &amp;amp; Debit cards via [[Skrill]]/Moneybookers)&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortüberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[paysafecard]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br /&amp;gt;USD,EUR,GBP ([[Skrill]]/Moneybookers)&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars (highly liquid).&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|-&lt;br /&gt;
|  [[Intersango]]([[Britcoin]]) || BTC&amp;lt;br /&amp;gt;GBP (bank deposit)&amp;lt;br /&amp;gt;EUR (SEPA bank deposit)&amp;lt;br /&amp;gt;PLN (bank transfer) || BTC&amp;lt;br /&amp;gt;GBP (bank deposit)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;PLN (bank transfer) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || BTC&amp;lt;br /&amp;gt;BTC (BTC-e redeemable code)&amp;lt;br /&amp;gt;USD (Cash deposit at Post of Russia)&amp;lt;br /&amp;gt;USD (Cash deposit at banks including Privatbank, Savings Bank of Russia (Sberbank), RU/UA Terminals, &amp;amp; more)&amp;lt;br /&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa)&amp;lt;br /&amp;gt;USD (WebMoney - WMZ)&amp;lt;br /&amp;gt;USD (Yandex)&amp;lt;br /&amp;gt;USD (LiqPay)&amp;lt;br /&amp;gt;USD (Perfect Money)&amp;lt;br /&amp;gt;USD (QIWI)&amp;lt;br /&amp;gt;USD (OKPay)&amp;lt;br /&amp;gt;USD (RBK Money)&amp;lt;br /&amp;gt;USD (Ditial currencies including НСМЭП (NSMEP), Единый Кошелек (Unified Purse), TeleMoney, &amp;amp; more)&amp;lt;br /&amp;gt;USD (BTC-e Redeemable Code, available via BitInstant and AurumXChange)&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;RUB (QIWI)&amp;lt;br /&amp;gt;RUB (LiqPay)&amp;lt;br /&amp;gt;RUB (WebMoney-WMR)&amp;lt;br /&amp;gt;RUB (BTC-e Redeemable code)&amp;lt;br /&amp;gt;RUB (Bank transfer) || BTC&amp;lt;br/&amp;gt;BTC (BTC-e redeemble code)&amp;lt;br /&amp;gt;USD (Liberty Reserve)&amp;lt;br /&amp;gt;USD (Webmoney - WMZ)&amp;lt;br /&amp;gt;USD (Perfect Money)&amp;lt;br /&amp;gt;USD (LiqPay)&amp;lt;br /&amp;gt;USD (QIWI)&amp;lt;br /&amp;gt;USD (PayPal)&amp;lt;br /&amp;gt;USD (OKPay)&amp;lt;br /&amp;gt;USD (Payza/AlertPay)&amp;lt;br /&amp;gt;USD (Privat, Privat UAH)&amp;lt;br /&amp;gt;USD (Cash deposit into Savings Bank/Sberbank, Telebank, Alfa Bank)&amp;lt;br /&amp;gt;USD (BTC-e Redeemable Code)&amp;lt;br /&amp;gt;USD (International Wire Transfer)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;RUB (Cash delivery, possible in Moscow)&amp;lt;br /&amp;gt;RUB (QIWI)&amp;lt;br /&amp;gt;RUB (LiqPay)&amp;lt;br /&amp;gt;RUB (WebMoney WMR)&amp;lt;br /&amp;gt;RUB (Яндекс.Деньги Yandex)&amp;lt;br /&amp;gt;RUB (RBK Money)&amp;lt;br /&amp;gt;Cash deposit (into account at Сбербанка России!/Savings Bank/Sberbank, Телебанк (Telebank), and АльфаБанк (Alfa Bank)&amp;lt;br /&amp;gt;RUB (Transfer to credit card VISA &amp;amp; MasterCard)&amp;lt;br /&amp;gt;RUB (BTC-e Redeemable code)&amp;lt;br /&amp;gt;RUB (Bank transfer) || {{Table Value Yes}} || Language: English, Russian.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at Royal Bank, Bank of Montreal or ScotiaBank)&amp;lt;br /&amp;gt;CAD (Online bill payment)&amp;lt;br /&amp;gt;CAD (Wire transfer) || BTC&amp;lt;br/&amp;gt;CAD (direct deposit)&amp;lt;br /&amp;gt;CAD (Canada Xpress Post Bank Draft send by mail)&amp;lt;br /&amp;gt;CAD Payza (formerly AlertPay) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] (CBX) || BTC &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt;USD (P2P bank transfer at Chase, B&amp;amp;nbsp;of&amp;amp;nbsp;A, Wells Fargo and ING. Credited after three business days).&amp;lt;br /&amp;gt;USD (Personal Check)&amp;lt;br /&amp;gt;USD (USPS Postal money order, Canada Post money order) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br/&amp;gt;USD (ACH Direct Deposit)&amp;lt;br /&amp;gt;USD (USPS Postal Money Order)&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Security certification from McAfee&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Advanced trading options with AON/FOK/Market&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;STOPLOSS and Short-Selling in Pipeline&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Wallet API available &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; CBX Instant Bitcoin Transfers Feature &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Stoploss / Custom Order Expiry Date/Time &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; SMS (Text Message) Notifications &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Two-Factor Authentication &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Based in USA - Atlanta &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitfloor]] || BTC&amp;lt;br/&amp;gt;USD (bank wire transfer)&amp;lt;br /&amp;gt;USD (Cash deposit at Bank of America)&amp;lt;br /&amp;gt;USD (CapitalOne 360 P2P) || BTC&amp;lt;br/&amp;gt;USD (ACH, direct deposit) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitstamp]] || BTC&amp;lt;br /&amp;gt;BTC (Redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;USD (Intl wire)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;CHF || BTC&amp;lt;br /&amp;gt;BTC (Redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;USD (Intl wire)&amp;lt;br /&amp;gt;USD (Redeemable code)&amp;lt;br /&amp;gt;CHF || {{Table Value Yes}} || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-Central]] || BTC&amp;lt;br /&amp;gt;GBP (Bank transfer)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;International wire (any currency) || BTC&amp;lt;br /&amp;gt;GBP (Bank transfer)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR || {{Table Value Yes}} || [https://github.com/davout/bitcoin-central Open-source], community reviewed platform&amp;lt;br /&amp;gt;Available in French and English languages&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SG]] || BTC &amp;lt;br/&amp;gt; SGD(Internet Bank Transfer)&amp;lt;br/&amp;gt;SGD (Annonymous Cash Deposit at any UOB Cash Deposit Machine in Singapore).&amp;lt;br /&amp;gt; || BTC&amp;lt;br/&amp;gt;SGD(Internet Bank Transfer)&amp;lt;br/&amp;gt; ||  {{Table Value Yes}} || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; Based in Singapore &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer)&amp;lt;br /&amp;gt;BRL (Bank transfer - MoIP)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Rock Currency Exchange]] || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[bitNZ]] || BTC&amp;lt;br/&amp;gt;NZD (Cash deposit at Westpac) || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-24]] || BTC&amp;lt;br/&amp;gt;USD ([[MtGox]] redeemable code)&amp;lt;br /&amp;gt;USD (VouchX redeemable code)&amp;lt;br /&amp;gt;USD (Credit card through LiqPay)&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;EUR ([[MtGox]] redeemable code)&amp;lt;br /&amp;gt;EUR (VouchX redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA wire)&amp;lt;br /&amp;gt;EUR (Sofort banking/Sofortuberweisung)&amp;lt;br /&amp;gt;EUR (GIROPay)&amp;lt;br /&amp;gt;GBP (International bank wire, converted to EUR)&amp;lt;br /&amp;gt;PLN (International bank wire, converted to EUR) || BTC&amp;lt;br/&amp;gt;USD (Bank wire transfer)&amp;lt;br /&amp;gt;USD ([[Skrill]]/Moneybookers)&amp;lt;br /&amp;gt;USD (VouchX redeemable code)&amp;lt;br /&amp;gt;EUR (SEPA wire)&amp;lt;br /&amp;gt;EUR (VouchX redeemable code)&amp;lt;br /&amp;gt;EUR (Cash, via DHL) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [[Kapiton.se]]  || BTC&amp;lt;br/&amp;gt;SEK (Bankgiro Bank Transfer) || BTC&amp;lt;br/&amp;gt;SEK (Bankgiro Bank Transfer) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Vircurex]] || BTC&amp;lt;br/&amp;gt;EUR (VouchX/AurumXchange redeemable code)&amp;lt;br/&amp;gt;USD (VouchX/AurumXchange redeemable code)|| BTC&amp;lt;br/&amp;gt;EUR (VouchX/AurumXchange redeemable code)&amp;lt;br/&amp;gt;USD (VouchX/AurumXchange redeemable code)|| {{Table Value Yes}} || Trading in many other P2P/Crypto currencies possible&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitMe]] || BTC&amp;lt;br/&amp;gt;USD (Cash deposits at Chase)&amp;lt;br/&amp;gt;USD (Wire Transfer - US)&amp;lt;br/&amp;gt;USD (Wire Transfer - International)&amp;lt;br /&amp;gt;USD (VouchX/AurumXchange redeemable code) || BTC&amp;lt;br/&amp;gt;USD (VouchX/AurumXChanage redemable code)&amp;lt;br/&amp;gt;USD (ACH / Direct Deposit)&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || {{ Table Value Yes }} || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Liquidity rebates&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/bitme BitMe&#039;s GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://bitme.github.com/rest/ REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[Real Bitcoin]] || BTC&amp;lt;br/&amp;gt;INR (Transfer directly to your account)&amp;lt;br/&amp;gt; USD|| BTC&amp;lt;br/&amp;gt;INR&amp;lt;br/&amp;gt;USD || {{Table Value Yes}} || Trading, printing, exchange, interest on investment, transfer to local bank&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&lt;br /&gt;
&lt;br /&gt;
The following exchanges are either exchanges using a fixed rate based on other markets or are exchanges that enable you to redeem smaller amounts of bitcoins at reasonable rates:&lt;br /&gt;
&lt;br /&gt;
* [[AurumXchange Company]] Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to Liberty Reserve, Perfect Money, Pecunix, C-Gold, VouchX, CosmicPay and more. Sell your Bitcoins and receive a USD Wire, or SEPA EUR transfer.&lt;br /&gt;
* [[AutoMtGox]] Convert your bitcoins to US Dollars automatically.&lt;br /&gt;
* [[Bahtcoin]] Trade BTC for Thai Baht, cash, LR, Webmoney, or Thai mobile and gaming prepaid cards.&lt;br /&gt;
* [[BTC China]] - Market for exchanging bitcoins to and from CNY, withdraw CNY (Tencent, Alipay) and USD (Liberty Reserve).&lt;br /&gt;
* [[BitBargain]] - Market in the UK for buying bitcoins with GBP instantly from trusted OTC sellers through escrow.&lt;br /&gt;
* [[Bitcoil]] Exchange BTC for ILS with bank transfers in Israel&lt;br /&gt;
* [[Bitcoin Argentina]] Trades BTC for ARS. Cash and bank transfer. No exchange fees.&lt;br /&gt;
* [[Bitcoin Brasil]] Cash exchange that redeems bitcoins for BRL, USD.&lt;br /&gt;
* [[Bitcoin Nordic]] Sell bitcoins with withdrawal to PayPal or bank transfer.&lt;br /&gt;
* [http://BitcoinIsrael.co.il BitcoinIsrael.co.il] Get cash (ILS) for your Bitcoins within hours from any where in Israel.&lt;br /&gt;
* [[Bitcoiny.cz]] Trade your BTCs for CZK.  No-escrow, direct person-to-person trading.&lt;br /&gt;
* [[bitcoin-otc]] IRC trading marketplace will usually have people willing to deal for small and larger amounts using various payment methods, including [[PayPal]], [[Dwolla]], [[Linden Dollars]], etc.&lt;br /&gt;
* [[Bitcoin.com.es]] Trade your BTCs for EUR (Bank transfer).&lt;br /&gt;
* [[bitcoin.de]] Trade your BTCs for EUR (bank wire, SEPA bank transfer, Liberty Reserve, Money Bookers), person to person, eWallet&lt;br /&gt;
* [http://bitcoin.in.th/ Bitcoin in Thailand] Buy and Sell BTC in Thailand for cash via local bank deposits and transfers.&lt;br /&gt;
* [[bitcoin.local]] arranges for exchanging currencies in person with someone nearby&lt;br /&gt;
* [[Bitcoins In Berlin]] Trade your BTC for cash-in-the-mail (EUR), in-person trande, Western Union, Moneygram, bank transfer or SEPA.&lt;br /&gt;
* [[Bitcopia.com]] Sell bitcoins for (USD): Cash in Mail, check, money order, cash deposit, bank transfer, or dwolla. Instant quotes based on live Mt. Gox prices.&lt;br /&gt;
* [[BitMarket.co]] Trade your BTCs for Colombian Peso (COP) as OTC with BTC Escrow.&lt;br /&gt;
* [[BitPiggy]] Trade your BTCs for AUD (Bank transfer).&lt;br /&gt;
* [http://BTCInstant.com BTCinstant.com] Trade bitcoins for Virtual Credit Card (VCC, and specifically Virtual Mastercard brand) sent through e-mail.&lt;br /&gt;
* [[BlockChain.info]] Convert bitcoins to [[MoneyPak]] straight from your Blockchain wallet (serviced from [[BTCPak]]).&lt;br /&gt;
* [[btcbuy|BTC Buy]] Simple interface to trade your BTCs for Amazon, Barnes &amp;amp; Noble, NewEgg, ThinkGeek and Sears gift cards&lt;br /&gt;
* [http://www.BTCJoe.com BTCJoe.com] Trade bitcoins for Amazon gift codes and iTunes (USD).&lt;br /&gt;
* [[BTCPak]] EXCHANGE YOUR BITCOINS FOR MONEYPAK: SECURE, ANONYMOUS AND EASY!&lt;br /&gt;
* [[btcx.se]] / Btcx Sweden || 0% above 80 btc || SEK || Bank transfers to most Swedish banks within 4-12 hours.&lt;br /&gt;
* [[Canadian Bitcoins]] Buy/Sell Bitcoins in CAD and receive Cash, Cheque, Bank Transfer (TD Person Pay) or Interac. &lt;br /&gt;
* [[Cartão BitCoin]] Convert your bitcoins to reload your debit card (offered to Brazilians, accepted at 10,000 locations in Brazil)&lt;br /&gt;
* [[Coin2Pal]] Sell your Bitcoins and receive PayPal funds immediately.&lt;br /&gt;
* [[Coinabul]] Trade your BTCs for Gold/Silver&lt;br /&gt;
* [[Coinbase]] Sell bitcoins with proceeds delivered as a bank transfer (U.S., as ACH/direct deposit).  Instant verification available for new accounts.&lt;br /&gt;
* [[ECurrencyZone]] Cash out bitcoins to INR, BDT, MYR, SGD via bank transfer or cash deposited to your bank account. Also to Western Union, Moneygram, Citibank global funds transfer, Paypal, Skrill/Moneybookers, Payza/AlertPay, OKPay.  Convert to digital currencies Liberty Reserve, C-Gold, Perfect Money, WebMoney  and EGOPay.&lt;br /&gt;
* [[FastCash4Bitcoins]] Sell your BTC and receive cash today. Over 100,000 BTC bought.  Payments issued using your choice of PayPal, Dwolla, ACH (Direct Deposit), Bank Wire, Company Check, Cashier&#039;s Check or Silver Bullion even.&lt;br /&gt;
* [http://www.happycoins.nl HappyCoins] Buy and sell Bitcoins in Euro using the Dutch iDEAL or European SEPA payment system. Fast and simple transactions with transparent fee and prices based on near real-time MtGox exchange price.&lt;br /&gt;
* [[Mang Sweeney]] Use bitcoins to send remittance payments to the Philippines, in-person cash out in metro Manilla or from various remittance centers.  Languages: English, Filipino.&lt;br /&gt;
* [[Lilion Transfer]] Exchanges bitcoins for Liberty Reserve, [[Pecunix]], [[AlertPay]], [[Skrill]]/Moneybookers, [[PayPal]], and more.&lt;br /&gt;
* [[Nanaimo Gold]] Redeem bitcoins for Liberty Reserve (automated) or for money transfer, money order or direct deposit within Canada.&lt;br /&gt;
* [[Spend Bitcoins]] Sell bitcoins for AUD (Australia). Redeem for bank transfer, AustPost reloadable VISA, bill payment and other various methods.&lt;br /&gt;
* [[Real Bitcoin]] Buy, Sell, trade, print, vanity address, interest on investment, transfer directly to your bank.&lt;br /&gt;
* [[WM-Center]] Buy/Sell BTCs with withdrawal to International bank wire (USD, GBP, EUR/IBAN, RUB, AUD), Western Union, Moneygram, Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, Anelik, Xoom, cash, etc.  24/7/365 support in english, spanish and russian.&lt;br /&gt;
* [http://localbitcoins.com LocalBitcoins.com] ([[LocalBitcoins|Info]]) Location-based bitcoin to cash exchange.&lt;br /&gt;
* [[OKPAY]] || Convert bitcoins from USD, EUR, GBP, RUB, CHF etc via Bank Wire Transfer, USD, EUR via additional direct methods, USD, EUR via Migom, USD, EUR via Money Polo, USD, EUR via Intel Express, USD, EUR via Liqpay, USD, EUR, UAH via Wallet1, RUB via (Yandex Money), and USD via OKPAY Debit Card. Completely non-reversible payments. Support of 19 world currencies, 15 languages.&lt;br /&gt;
&lt;br /&gt;
==Goods and Services==&lt;br /&gt;
&lt;br /&gt;
One way of selling bitcoins is to use them as the payment method when making purchases.&lt;br /&gt;
&lt;br /&gt;
See the [[Trade]] page for a fairly comprehensive list of goods and service that bitcoins will purchase.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Digital currencies|Digital currencies]]&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [[Secure Trading]]&lt;br /&gt;
* [[:Category:Local|Local]] exchanges&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Dave111223</name></author>
	</entry>
</feed>