<?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=Champbronc2</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=Champbronc2"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Champbronc2"/>
	<updated>2026-05-07T02:04:26Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Signet&amp;diff=70498</id>
		<title>Signet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Signet&amp;diff=70498"/>
		<updated>2024-12-21T00:45:25Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: Adding 2 more faucets&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Signet&#039;&#039;&#039; ([[BIP 0325]]) is a new test network for Bitcoin which adds an additional signature requirement to block validation. Signet is similar in nature to [[testnet]], but more reliable and centrally controlled. There is a default signet network (&amp;quot;Signet Global Test Net VI&amp;quot; as of this writing), but anyone can run their own signet network at their whim.&lt;br /&gt;
&lt;br /&gt;
Run bitcoind with the &amp;lt;code&amp;gt;-signet&amp;lt;/code&amp;gt; flag to use the default global signet (or put &amp;lt;code&amp;gt;signet=1&amp;lt;/code&amp;gt; in the &amp;lt;code&amp;gt;bitcoin.conf&amp;lt;/code&amp;gt; file). If you wish to use a [[#Custom Signet|custom signet]], you need to provide the block challenge (aka the block script) using &amp;lt;code&amp;gt;-signetchallenge=&amp;lt;hex&amp;gt;&amp;lt;/code&amp;gt;, and preferably also at least one seed node using &amp;lt;code&amp;gt;-signetseednode=&amp;lt;host&amp;gt;[:&amp;lt;port&amp;gt;]&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Differences==&lt;br /&gt;
&lt;br /&gt;
* Default Bitcoin network protocol listen port is 38333 (instead of 8333)&lt;br /&gt;
* Default RPC connection port is 38332 (instead of 8332)&lt;br /&gt;
* A different value of ADDRESSVERSION field ensures no signet Bitcoin addresses will work on the production network. (0x6F rather than 0x00)&lt;br /&gt;
* The protocol message header bytes are *dynamically generated* based on the block challenge, i.e. every signet is different; the header for the current default signet is &amp;lt;code&amp;gt;0x0A03CF40&amp;lt;/code&amp;gt; (that is reversed e.g. in Rust variables) (instead of &amp;lt;code&amp;gt;0xF9BEB4D9&amp;lt;/code&amp;gt;), but see [[#Genesis_Block_and_Message_Header]]&lt;br /&gt;
* Genesis block has timestamp 1598918400, nonce 52613770, and difficulty 0x1e0377ae.&lt;br /&gt;
* Segwit is always enabled&lt;br /&gt;
* Additional consensus requirement that the coinbase witness commitment contains an extended signet commitment, which is a script satisfying the block script (usually a k-of-n multisig)&lt;br /&gt;
&lt;br /&gt;
==Why run Signet?==&lt;br /&gt;
&lt;br /&gt;
* You are an Instructor, and want to run a controlled Bitcoin network environment for teaching purposes.&lt;br /&gt;
* You are a Software Developer, and want to test your software.&lt;br /&gt;
* You want to try out experimental changes that you want to implement in Bitcoin.&lt;br /&gt;
* You want to test long-term running software and don&#039;t want to deal with tens of thousands of block reorgs, or days of no blocks being mined, as is the case with Testnet.&lt;br /&gt;
* You want an easy way to test double spends (signet plans to include support for automated double spends, where you provide two conflicting transactions and they are mined in order, with a reorg happening between them).&lt;br /&gt;
&lt;br /&gt;
==Genesis Block and Message Header==&lt;br /&gt;
&lt;br /&gt;
All signet networks share the same genesis block, but have a different message header. The message header is the 4 first bytes of the sha256d-hash of the block challenge, as a single script push operation. I.e. if the block challenge is 37 bytes, the message start would be sha256d(0x25 || challenge)[0..3].&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
&lt;br /&gt;
NOTE: signet (VI) was merged into the master branch of Bitcoin Core as of https://github.com/bitcoin/bitcoin/pull/18267&lt;br /&gt;
&lt;br /&gt;
===Fetch and compile signet===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ git clone https://github.com/bitcoin/bitcoin&lt;br /&gt;
$ cd bitcoin&lt;br /&gt;
$ ./autogen.sh&lt;br /&gt;
$ ./configure&lt;br /&gt;
$ make -j5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Create bitcoin.conf file and start up the daemon===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd src&lt;br /&gt;
$ mkdir signet&lt;br /&gt;
$ echo &amp;quot;signet=1&lt;br /&gt;
daemon=1&amp;quot; &amp;gt; signet/bitcoin.conf&lt;br /&gt;
$ ./bitcoind -datadir=signet&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Verify that you&#039;re connected===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ./bitcoin-cli -datadir=signet getconnectioncount&lt;br /&gt;
***SHOULD BE MORE THAN ZERO***&lt;br /&gt;
$ ./bitcoin-cli -datadir=signet getblockcount&lt;br /&gt;
***SHOULD BE MORE THAN ZERO***&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Get some coins===&lt;br /&gt;
&lt;br /&gt;
There is a command line tool you can use to get coins directly to your instance of Signet, assuming you are on the default network. You can also use the faucet online with an address of yours.&lt;br /&gt;
&lt;br /&gt;
====Using online faucet====&lt;br /&gt;
&lt;br /&gt;
You first need an address&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ./bitcoin-cli -datadir=signet getnewaddress&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then go to a faucet, e.g. https://signet.bc-2.jp and enter your address.&lt;br /&gt;
&lt;br /&gt;
====Using the command line tool====&lt;br /&gt;
&lt;br /&gt;
The tool is in &amp;lt;code&amp;gt;contrib/signet&amp;lt;/code&amp;gt; and is called &amp;lt;code&amp;gt;getcoins.sh&amp;lt;/code&amp;gt;. You can optionally provide a path to &amp;lt;code&amp;gt;bitcoin-cli&amp;lt;/code&amp;gt; using &amp;lt;code&amp;gt;--cmd=[path]&amp;lt;/code&amp;gt; and a compatible faucet using &amp;lt;code&amp;gt;--faucet=[url]&amp;lt;/code&amp;gt; followed by any number of arguments to &amp;lt;code&amp;gt;bitcoin-cli&amp;lt;/code&amp;gt;. The script attempts to autodetect these if left out.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd ../contrib/signet&lt;br /&gt;
$ ./getcoins.sh -datadir=../../src/signet&lt;br /&gt;
Payment of 10.00000000 BTC sent with txid c0bfa...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Check that you received the coins===&lt;br /&gt;
&lt;br /&gt;
Check your faucet transaction confirming at e.g. https://explorer.bc-2.jp and then send coins around to people and/or use signet for testing your wallet/etc.&lt;br /&gt;
&lt;br /&gt;
You can immediately see the amount using &amp;lt;code&amp;gt;getunconfirmedbalance&amp;lt;/code&amp;gt; i.e.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd ../../src # if you were in contrib/signet&lt;br /&gt;
$ ./bitcoin-cli -datadir=signet getunconfirmedbalance&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also see info about the transaction that the faucet gave you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ./bitcoin-cli -datadir=signet gettransaction THETXID&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once it has confirmed, you should see it in &amp;lt;code&amp;gt;getbalance&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ./bitcoin-cli -datadir=signet getbalance&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/bitcoin/bips/blob/master/bip-0325.mediawiki BIP-325]&lt;br /&gt;
&lt;br /&gt;
===Faucets===&lt;br /&gt;
&lt;br /&gt;
* https://signetfaucet.com/&lt;br /&gt;
* https://alt.signetfaucet.com (the same [https://signetfaucet.bublina.eu.org here])&lt;br /&gt;
* https://signet.dcorral.com/&lt;br /&gt;
* https://bitcoinsignetfaucet.com&lt;br /&gt;
&lt;br /&gt;
Faucet source code, if you want your own:&lt;br /&gt;
&lt;br /&gt;
* https://github.com/stepansnigirev/tinyfaucet.git (python)&lt;br /&gt;
* https://github.com/jsarenik/bitcoin-faucet-shell (POSIX shell)&lt;br /&gt;
&lt;br /&gt;
===Block explorers===&lt;br /&gt;
&lt;br /&gt;
* https://explorer.bc-2.jp/&lt;br /&gt;
* https://mempool.space/signet&lt;br /&gt;
* https://exsignet.bublina.eu.org&lt;br /&gt;
&lt;br /&gt;
==Custom Signet==&lt;br /&gt;
&lt;br /&gt;
Creating your own signet involves a couple of steps: generate keys used for signing, define the block script, start up a node running on the new signet, and import the private key in order to sign blocks.&lt;br /&gt;
&lt;br /&gt;
===Generating keys used for signing a block===&lt;br /&gt;
&lt;br /&gt;
The most straightforward way is to simply start up a regtest node and then generating a new key from there.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd PATHTOBITCOIN/bitcoin/src&lt;br /&gt;
$ ./bitcoind -regtest -daemon -wallet=&amp;quot;test&amp;quot;&lt;br /&gt;
$ ADDR=$(./bitcoin-cli -regtest getnewaddress)&lt;br /&gt;
$ PRIVKEY=$(./bitcoin-cli -regtest dumpprivkey $ADDR)&lt;br /&gt;
$ ./bitcoin-cli -regtest getaddressinfo $ADDR | grep pubkey&lt;br /&gt;
  &amp;quot;pubkey&amp;quot;: &amp;quot;THE_REAL_PUBKEY&amp;quot;,&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We need to jot down the privkey (&amp;lt;code&amp;gt;echo $PRIVKEY&amp;lt;/code&amp;gt;) and the pubkey (here &amp;lt;code&amp;gt;THE_REAL_PUBKEY&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===Defining the block script===&lt;br /&gt;
&lt;br /&gt;
The block script is just like any old Bitcoin script, but the most common type is a k-of-n multisig. Here we will do a 1-of-1 multisig with our single pubkey above. Our script becomes&lt;br /&gt;
* &amp;lt;code&amp;gt;51&amp;lt;/code&amp;gt; &amp;quot;1&amp;quot; (signature count)&lt;br /&gt;
* &amp;lt;code&amp;gt;21&amp;lt;/code&amp;gt; Push 0x21=33 bytes (the length of our pubkey above)&lt;br /&gt;
* &amp;lt;code&amp;gt;THE_REAL_PUBKEY&amp;lt;/code&amp;gt; (our pubkey)&lt;br /&gt;
* &amp;lt;code&amp;gt;51&amp;lt;/code&amp;gt; &amp;quot;1&amp;quot; (pubkey count)&lt;br /&gt;
* &amp;lt;code&amp;gt;ae&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;OP_CHECKMULTISIG&amp;lt;/code&amp;gt; opcode&lt;br /&gt;
&lt;br /&gt;
Put together, our &amp;lt;code&amp;gt;-signetchallenge&amp;lt;/code&amp;gt; value becomes &amp;lt;code&amp;gt;5121...51ae&amp;lt;/code&amp;gt;. Where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; stands for &amp;lt;code&amp;gt;THE_REAL_PUBKEY&amp;lt;/code&amp;gt; (see above).&lt;br /&gt;
&lt;br /&gt;
===Start up a node (issuer)===&lt;br /&gt;
&lt;br /&gt;
For the network to be useful, it needs to be generating blocks at decent intervals, so let&#039;s start up a node that does that (it may be useful to also use that node as a seed node for other peers).&lt;br /&gt;
&lt;br /&gt;
Note that we are importing &amp;lt;code&amp;gt;$PRIVKEY&amp;lt;/code&amp;gt; at the end; any node that needs to issue blocks must import the privkey we generated above, or it will fail to sign blocks.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ./bitcoin-cli -regtest stop&lt;br /&gt;
$ datadir=$HOME/signet-custom&lt;br /&gt;
$ mkdir $datadir&lt;br /&gt;
$ echo &amp;quot;signet=1&lt;br /&gt;
[signet]&lt;br /&gt;
daemon=1&lt;br /&gt;
signetchallenge=5121...51ae # fill in THE_REAL_PUBKEY&amp;quot; &amp;gt; $datadir/bitcoin.conf&lt;br /&gt;
$ ./bitcoind -datadir=$datadir -wallet=&amp;quot;test&amp;quot;&lt;br /&gt;
$ ./bitcoin-cli -datadir=$datadir importprivkey $PRIVKEY&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: if you run into errors above, you may have a different signet running, which is blocking the ports. Either stop that, or set port and rpcport in the &amp;lt;code&amp;gt;$datadir/bitcoin.conf&amp;lt;/code&amp;gt; file under the &amp;lt;code&amp;gt;[signet]&amp;lt;/code&amp;gt; section and try again from the &amp;lt;code&amp;gt;bitcoind&amp;lt;/code&amp;gt; part above.&lt;br /&gt;
&lt;br /&gt;
===Run issuer===&lt;br /&gt;
&lt;br /&gt;
Lastly, we&#039;re going to get an issuer up and running to mine blocks.&lt;br /&gt;
&lt;br /&gt;
We&#039;ll need to provide a value for &amp;lt;code&amp;gt;nbits&amp;lt;/code&amp;gt; which is the mining target and is inversely proportional to the difficulty. This will allow us to set the average time between mined blocks.&lt;br /&gt;
&lt;br /&gt;
We can use the &amp;lt;code&amp;gt;calibrate&amp;lt;/code&amp;gt; command to give us the &amp;lt;code&amp;gt;nbits&amp;lt;/code&amp;gt; for an average mining time of 10 min (600 s):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ../contrib/signet/miner --cli=&amp;quot;./bitcoin-cli&amp;quot; calibrate --grind-cmd=&amp;quot;./bitcoin-util grind&amp;quot; --seconds=600&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Referring to our &amp;lt;code&amp;gt;nbits&amp;lt;/code&amp;gt; value with the variable &amp;lt;code&amp;gt;$NBITS&amp;lt;/code&amp;gt;, we need to specify &amp;lt;code&amp;gt;--set-block-time&amp;lt;/code&amp;gt; when mining the first block in a new signet:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ADDR=$(./bitcoin-cli -datadir=$datadir getnewaddress); ../contrib/signet/miner --cli=&amp;quot;./bitcoin-cli -datadir=$datadir&amp;quot; generate --address $ADDR --grind-cmd=&amp;quot;./bitcoin-util grind&amp;quot; --nbits=$NBITS --set-block-time=$(date +%s)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will create an address, and then mine the first block to that address. (Note that you may need to create a wallet first.)&lt;br /&gt;
&lt;br /&gt;
To keep the mining ongoing from there, aiming for blocks arriving every 10 minutes on average, we can run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ../contrib/signet/miner --cli=&amp;quot;./bitcoin-cli -datadir=$datadir&amp;quot; generate --address $ADDR --grind-cmd=&amp;quot;./bitcoin-util grind&amp;quot; --nbits=$NBITS --ongoing&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next is to have your friends/colleagues/etc join the network by setting the &amp;lt;code&amp;gt;signetchallenge&amp;lt;/code&amp;gt; to the same as above, and connecting to your node.&lt;br /&gt;
&lt;br /&gt;
===Example Script===&lt;br /&gt;
&lt;br /&gt;
A full example script can be found at https://en.bitcoin.it/wiki/Signet:Custom:Script&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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=53426</id>
		<title>BitQuick.co</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=53426"/>
		<updated>2014-12-11T14:32:02Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.bitquick.co BitQuick.co] is an instant buying and selling Bitcoin marketplace that allows buyers to connect directly to sellers via cash deposit or SEPA transfer. BitQuick provides a consistent, streamlined arbitration process for each transaction to ensure both parties are satisfied. To purchase Bitcoins on BitQuick.co, a buyer deposits cash into the sellers account, and within 3 hours of uploading the deposit receipt, the Bitcoins are sent. &lt;br /&gt;
&lt;br /&gt;
[[BuyBitcoin.US]] became BitQuick.co 8/10/2013.&lt;br /&gt;
&lt;br /&gt;
BitQuick.co became the first Bitcoin marketplace to provide [https://www.bitquick.co/bitquick-co-updates-api-to-show-proof-of-transparency-we-believe-in-making-bitcoin-trading-safe-and-simple public proof of its reserves] on 2/27/2014.&lt;br /&gt;
&lt;br /&gt;
BitQuick.co simplifies [[BitQuick.co#Using BitQuick.co|buying and selling Bitcoin to 3 easy, quick steps]]. It can be used to convert Bitcoin to FIAT, or FIAT to Bitcoin in hours. The service is comparable to a hybrid of the [[BitInstant]] and [[LocalBitcoins.com]] service. [[Image:BQ Icon.png|frame|BitQuick.co Logo]][[File:BuyBitcoinUSmap.png|thumb|Popular BitQuick.co USA Deposit Locations. Deposit locations also available in Canada, Europe, and more]]&lt;br /&gt;
&lt;br /&gt;
==Methods of Payment==&lt;br /&gt;
&lt;br /&gt;
===International (USA, CA, EU, RU, AU)===&lt;br /&gt;
&lt;br /&gt;
* Cash deposit &lt;br /&gt;
* SEPA transfer&lt;br /&gt;
&lt;br /&gt;
No other current payment methods are being accepted. Money order support may be added in the future.&lt;br /&gt;
&lt;br /&gt;
Orders must be paid for within 3 hours of the buyer hold being placed. Having 3 or more unpaid buyer holds within a 72 hour span will result in a ban from the service.&lt;br /&gt;
&lt;br /&gt;
ACH, Wire transfer, or any other payment method not listed are strictly prohibited.&lt;br /&gt;
&lt;br /&gt;
==Fees &amp;amp; Rates==&lt;br /&gt;
&lt;br /&gt;
BitQuick.co charges a 0% fee to sell Bitcoin and a 2% fee to buy Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bitcoins can be listed at any rate, and typically sell for around the Mt. Gox rate. This makes BitQuick.co the cheapest way to convert cash to Bitcoin in one day, or vice versa.&lt;br /&gt;
&lt;br /&gt;
==Using BitQuick.co==&lt;br /&gt;
===How to [https://www.bitquick.co/buy-2 Buy Bitcoins] Instantly on BitQuick.co (2% fee)===&lt;br /&gt;
#Select an order from the [https://www.bitquick.co/buy-2.php current order book], enter your email and Bitcoin address and submit.&lt;br /&gt;
#Pay the described sum to the account shown on the confirmation page by going to any local branch of the sellers bank and filling out a deposit form with cash, or sending a SEPA transfer (EU customers). [http://www.wikihow.com/Fill-Out-a-Deposit-Slip How to fill out a deposit slip]&lt;br /&gt;
#Upload the receipt to BitQuick.co.&lt;br /&gt;
&lt;br /&gt;
Your Bitcoin are sent within 3 business hours of your receipt being received.&lt;br /&gt;
&lt;br /&gt;
===How to [https://www.bitquick.co/sell Sell Bitcoin] Instantly on BitQuick.co (0% fee)===&lt;br /&gt;
#Fill out the form on [https://www.bitquick.co/sell BitQuick.co].&lt;br /&gt;
#Deposit the amount of BTC for sale into your personalized escrow address.&lt;br /&gt;
#Confirm cash deposits or SEPA transfers from buyers on BitQuick.co instantly.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
*256 bit SSL encryption&lt;br /&gt;
*Daily server backups&lt;br /&gt;
*Private keys for escrow addresses stored offline, ensuring no Bitcoin can be lost in case of a server compromise.&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co/how-to FAQ] page&lt;br /&gt;
* E-mail: orders@bitquick.co&lt;br /&gt;
* Twitter: [http://twitter.com/bitquickco] and [http://twitter.com/buybitcoinus]&lt;br /&gt;
* Facebook: [http://facebook.com/bitquickco] and [http://facebook.com/buybitcoinus]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co BitQuick.co] Website&lt;br /&gt;
* [https://www.bitquick.co/how-to.php BitQuick.co FAQ]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[Category:Financial]]&lt;br /&gt;
[[Category:Local]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=53266</id>
		<title>BitQuick.co</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=53266"/>
		<updated>2014-11-28T16:10:31Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* How to Buy Bitcoin Instantly on BitQuick.co (2% fee) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.bitquick.co BitQuick.co] is an instant buying and selling Bitcoin platform that allows buyers to connect directly to sellers via cash deposit or SEPA transfer. To purchase Bitcoins on BitQuick.co, a buyer deposits cash into the sellers account, and within 3 hours of uploading the deposit receipt, the Bitcoins are sent. &lt;br /&gt;
&lt;br /&gt;
[[BuyBitcoin.US]] became BitQuick.co 8/10/2013.&lt;br /&gt;
&lt;br /&gt;
BitQuick.co simplifies [[BitQuick.co#Using BitQuick.co|buying and selling Bitcoin to 3 easy, quick steps]]. It can be used to convert Bitcoin to FIAT, or FIAT to Bitcoin in hours. The service is comparable to a hybrid of the [[BitInstant]] and [[LocalBitcoins.com]] service. [[Image:BQ Icon.png|frame|BitQuick.co Logo]][[File:BuyBitcoinUSmap.png|thumb|Popular BitQuick.co USA Deposit Locations. Deposit locations also available in Canada, Europe, and more]]&lt;br /&gt;
&lt;br /&gt;
==Methods of Payment==&lt;br /&gt;
&lt;br /&gt;
===International (USA, CA, EU, RU, AU)===&lt;br /&gt;
&lt;br /&gt;
* Cash deposit &lt;br /&gt;
* SEPA transfer&lt;br /&gt;
&lt;br /&gt;
No other current payment methods are being accepted. Money order support may be added in the future.&lt;br /&gt;
&lt;br /&gt;
Orders must be paid for within 3 hours of the buyer hold being placed. Having 3 or more unpaid buyer holds within a 72 hour span will result in a ban from the service.&lt;br /&gt;
&lt;br /&gt;
ACH, Wire transfer, or any other payment method not listed are strictly prohibited.&lt;br /&gt;
&lt;br /&gt;
==Fees &amp;amp; Rates==&lt;br /&gt;
&lt;br /&gt;
BitQuick.co charges a 0% fee to sell Bitcoin and a 2% fee to buy Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bitcoins can be listed at any rate, and typically sell for around the Mt. Gox rate. This makes BitQuick.co the cheapest way to convert cash to Bitcoin in one day, or vice versa.&lt;br /&gt;
&lt;br /&gt;
==Using BitQuick.co==&lt;br /&gt;
===How to [https://www.bitquick.co/buy-2 Buy Bitcoins] Instantly on BitQuick.co (2% fee)===&lt;br /&gt;
#Select an order from the [https://www.bitquick.co/buy-2.php current order book], enter your email and Bitcoin address and submit.&lt;br /&gt;
#Pay the described sum to the account shown on the confirmation page by going to any local branch of the sellers bank and filling out a deposit form with cash, or sending a SEPA transfer (EU customers). [http://www.wikihow.com/Fill-Out-a-Deposit-Slip How to fill out a deposit slip]&lt;br /&gt;
#Upload the receipt to BitQuick.co.&lt;br /&gt;
&lt;br /&gt;
Your Bitcoin are sent within 3 business hours of your receipt being received.&lt;br /&gt;
&lt;br /&gt;
===How to [https://www.bitquick.co/sell Sell Bitcoin] Instantly on BitQuick.co (0% fee)===&lt;br /&gt;
#Fill out the form on [https://www.bitquick.co/sell BitQuick.co].&lt;br /&gt;
#Deposit the amount of BTC for sale into your personalized escrow address.&lt;br /&gt;
#Receive cash deposits or SEPA transfers from buyers on BitQuick.co instantly.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
*256 bit SSL encryption&lt;br /&gt;
*Daily server backups&lt;br /&gt;
*Private keys for escrow addresses stored offline, ensuring no Bitcoin can be lost in case of a server compromise.&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co/how-to FAQ] page&lt;br /&gt;
* E-mail: orders@bitquick.co&lt;br /&gt;
* Twitter: [http://twitter.com/bitquickco] and [http://twitter.com/buybitcoinus]&lt;br /&gt;
* Facebook: [http://facebook.com/bitquickco] and [http://facebook.com/buybitcoinus]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co BitQuick.co] Website&lt;br /&gt;
* [https://www.bitquick.co/how-to.php BitQuick.co FAQ]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[Category:Financial]]&lt;br /&gt;
[[Category:Local]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=53265</id>
		<title>BitQuick.co</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=53265"/>
		<updated>2014-11-28T16:09:59Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.bitquick.co BitQuick.co] is an instant buying and selling Bitcoin platform that allows buyers to connect directly to sellers via cash deposit or SEPA transfer. To purchase Bitcoins on BitQuick.co, a buyer deposits cash into the sellers account, and within 3 hours of uploading the deposit receipt, the Bitcoins are sent. &lt;br /&gt;
&lt;br /&gt;
[[BuyBitcoin.US]] became BitQuick.co 8/10/2013.&lt;br /&gt;
&lt;br /&gt;
BitQuick.co simplifies [[BitQuick.co#Using BitQuick.co|buying and selling Bitcoin to 3 easy, quick steps]]. It can be used to convert Bitcoin to FIAT, or FIAT to Bitcoin in hours. The service is comparable to a hybrid of the [[BitInstant]] and [[LocalBitcoins.com]] service. [[Image:BQ Icon.png|frame|BitQuick.co Logo]][[File:BuyBitcoinUSmap.png|thumb|Popular BitQuick.co USA Deposit Locations. Deposit locations also available in Canada, Europe, and more]]&lt;br /&gt;
&lt;br /&gt;
==Methods of Payment==&lt;br /&gt;
&lt;br /&gt;
===International (USA, CA, EU, RU, AU)===&lt;br /&gt;
&lt;br /&gt;
* Cash deposit &lt;br /&gt;
* SEPA transfer&lt;br /&gt;
&lt;br /&gt;
No other current payment methods are being accepted. Money order support may be added in the future.&lt;br /&gt;
&lt;br /&gt;
Orders must be paid for within 3 hours of the buyer hold being placed. Having 3 or more unpaid buyer holds within a 72 hour span will result in a ban from the service.&lt;br /&gt;
&lt;br /&gt;
ACH, Wire transfer, or any other payment method not listed are strictly prohibited.&lt;br /&gt;
&lt;br /&gt;
==Fees &amp;amp; Rates==&lt;br /&gt;
&lt;br /&gt;
BitQuick.co charges a 0% fee to sell Bitcoin and a 2% fee to buy Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bitcoins can be listed at any rate, and typically sell for around the Mt. Gox rate. This makes BitQuick.co the cheapest way to convert cash to Bitcoin in one day, or vice versa.&lt;br /&gt;
&lt;br /&gt;
==Using BitQuick.co==&lt;br /&gt;
===How to [https://www.bitquick.co/buy Buy Bitcoin] Instantly on BitQuick.co (2% fee)===&lt;br /&gt;
#Select an order from the [https://www.bitquick.co/buy-2.php current order book], enter your email and Bitcoin address and submit.&lt;br /&gt;
#Pay the described sum to the account shown on the confirmation page by going to any local branch of the sellers bank and filling out a deposit form with cash, or sending a SEPA transfer (EU customers). [http://www.wikihow.com/Fill-Out-a-Deposit-Slip How to fill out a deposit slip]&lt;br /&gt;
#Upload the receipt to BitQuick.co.&lt;br /&gt;
&lt;br /&gt;
Your Bitcoin are sent within 3 business hours of your receipt being received.&lt;br /&gt;
&lt;br /&gt;
===How to [https://www.bitquick.co/sell Sell Bitcoin] Instantly on BitQuick.co (0% fee)===&lt;br /&gt;
#Fill out the form on [https://www.bitquick.co/sell BitQuick.co].&lt;br /&gt;
#Deposit the amount of BTC for sale into your personalized escrow address.&lt;br /&gt;
#Receive cash deposits or SEPA transfers from buyers on BitQuick.co instantly.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
*256 bit SSL encryption&lt;br /&gt;
*Daily server backups&lt;br /&gt;
*Private keys for escrow addresses stored offline, ensuring no Bitcoin can be lost in case of a server compromise.&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co/how-to FAQ] page&lt;br /&gt;
* E-mail: orders@bitquick.co&lt;br /&gt;
* Twitter: [http://twitter.com/bitquickco] and [http://twitter.com/buybitcoinus]&lt;br /&gt;
* Facebook: [http://facebook.com/bitquickco] and [http://facebook.com/buybitcoinus]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co BitQuick.co] Website&lt;br /&gt;
* [https://www.bitquick.co/how-to.php BitQuick.co FAQ]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[Category:Financial]]&lt;br /&gt;
[[Category:Local]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=45065</id>
		<title>BitQuick.co</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=45065"/>
		<updated>2014-03-17T23:04:15Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.bitquick.co BitQuick.co] is an instant buying and selling Bitcoin platform that allows buyers to connect directly to sellers via cash deposit or SEPA transfer. To purchase Bitcoins on BitQuick.co, a buyer deposits cash into the sellers account, and soon after emailing the deposit receipt, the Bitcoins are sent. &lt;br /&gt;
&lt;br /&gt;
[[BuyBitcoin.US]] became BitQuick.co 8/10/2013.&lt;br /&gt;
&lt;br /&gt;
BitQuick.co simplifies [[BitQuick.co#Using BitQuick.co|buying and selling Bitcoin to 3 easy, quick steps]]. It can be used to convert Bitcoin to FIAT, or FIAT to Bitcoin in hours. The service is comparable to a hybrid of the [[BitInstant]] and [[LocalBitcoins.com]] service. [[Image:BQ Icon.png|frame|BitQuick.co Logo]][[File:BuyBitcoinUSmap.png|thumb|Popular BitQuick.co USA Deposit Locations. Deposit locations also available in Canada, Europe, and more]]&lt;br /&gt;
&lt;br /&gt;
==Methods of Payment==&lt;br /&gt;
&lt;br /&gt;
===International (USA, CA, EU, RU, AU)===&lt;br /&gt;
&lt;br /&gt;
* Cash deposit &lt;br /&gt;
* SEPA transfer&lt;br /&gt;
&lt;br /&gt;
No other current payment methods are being accepted. Money order support may be added in the future.&lt;br /&gt;
&lt;br /&gt;
Orders must be paid for within 3 hours of the buyer hold being placed. Having 3 or more unpaid buyer holds within a 72 hour span will result in a ban from the service.&lt;br /&gt;
&lt;br /&gt;
ACH, Wire transfer, or any other payment method not listed are strictly prohibited.&lt;br /&gt;
&lt;br /&gt;
==Fees &amp;amp; Rates==&lt;br /&gt;
&lt;br /&gt;
BitQuick.co charges a 0% fee to sell Bitcoin and a 2% fee to buy Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bitcoins can be listed at any rate, and typically sell for around the Mt. Gox rate. This makes BitQuick.co the cheapest way to convert cash to Bitcoin in one day, or vice versa.&lt;br /&gt;
&lt;br /&gt;
==Using BitQuick.co==&lt;br /&gt;
===How to [https://www.bitquick.co/buy Buy Bitcoin] Instantly on BitQuick.co (2% fee)===&lt;br /&gt;
#Select an order from the [https://www.bitquick.co/buy current order book], enter your email and Bitcoin address and submit.&lt;br /&gt;
#Pay the described sum to the account shown on the confirmation page by going to any local branch of the sellers bank and filling out a deposit form with cash, or sending a SEPA transfer (EU customers). [http://www.wikihow.com/Fill-Out-a-Deposit-Slip How to fill out a deposit slip]&lt;br /&gt;
#Email the receipt to orders@bitquick.co.&lt;br /&gt;
&lt;br /&gt;
Your Bitcoin are sent within an hour of your receipt being received.&lt;br /&gt;
&lt;br /&gt;
===How to [https://www.bitquick.co/sell Sell Bitcoin] Instantly on BitQuick.co (0% fee)===&lt;br /&gt;
#Fill out the form on [https://www.bitquick.co/sell BitQuick.co].&lt;br /&gt;
#Deposit the amount of BTC for sale into your personalized escrow address.&lt;br /&gt;
#Receive cash deposits or SEPA transfers from buyers on BitQuick.co instantly.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
*256 bit SSL encryption&lt;br /&gt;
*Daily server backups&lt;br /&gt;
*Private keys for escrow addresses stored offline, ensuring no Bitcoin can be lost in case of a server compromise.&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
* [http://www.bitquick.co/faq FAQ] page&lt;br /&gt;
* E-mail: orders@bitquick.co&lt;br /&gt;
* Twitter: [http://twitter.com/bitquickco] and [http://twitter.com/buybitcoinus]&lt;br /&gt;
* Facebook: [http://facebook.com/bitquickco] and [http://facebook.com/buybitcoinus]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co BitQuick.co] Website&lt;br /&gt;
* [https://www.bitquick.co/faq BitQuick.co FAQ]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[Category:Financial]]&lt;br /&gt;
[[Category:Local]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=File:BQ_Icon.png&amp;diff=45064</id>
		<title>File:BQ Icon.png</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=File:BQ_Icon.png&amp;diff=45064"/>
		<updated>2014-03-17T23:01:55Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=44376</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=44376"/>
		<updated>2014-02-09T20:58:04Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent. All legitimate deposits are guaranteed.&lt;br /&gt;
&lt;br /&gt;
[http://localbitcoins.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud. Trust must still be put in the users.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[http://localbitcoins.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
[http://www.belgacoin.com Belgacoin] allows you to buy bitcoins via SEPA transfer. It is fast, secure and cheap. No registration needed. We do not charge anything for this service, for the time being.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
 &lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
 	&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
 	&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
 	&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it. They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
 	&lt;br /&gt;
Having said that there is a [http://99bitcoins.com/buying-bitcoins-with-paypal-a-practical-guide/ workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
 	&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://99bitcoins.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via Online Auction ===&lt;br /&gt;
[http://ccauction.net CryptoCoins Auction] is a free of charge auction platform only for Bitcoins and other crypto currencies. On [http://ebay.com/ eBay] or [http://ricardo.ch/ Ricardo Switzerland] you can also buy Bitcoins, usually via SEPA transfer or PayPal. Note that in some countries (e.g. Germany) this is not possible - due to legal reasons. &lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
Starting in October of 2013, physical Bitcoin ATMs have been in stalled in Canada, Finland, Slovakia, Australia, Germany, and the UK. Use a [http://bitcoinatmexplorer.com/ Bitcoin ATM Locator] to find a machine near you.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]], however in February 2014 they halted withdrawals which created a lack of confidence and a decline in the price of bitcoin. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=44201</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=44201"/>
		<updated>2014-02-02T20:13:02Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: Yes but PayPal should not be used and is laborious and expensive and will end up shooing people from Bitcoin. Also removed BitInstant&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://localbitcoins.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[http://localbitcoins.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
[http://www.belgacoin.com Belgacoin] allows you to buy bitcoins via SEPA transfer. It is fast, secure and cheap. No registration needed. We do not charge anything for this service, for the time being.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via Online Auction ===&lt;br /&gt;
[http://ccauction.net CryptoCoins Auction] is a free of charge auction platform only for Bitcoins and other crypto currencies. On [http://ebay.com/ eBay] or [http://ricardo.ch/ Ricardo Switzerland] you can also buy Bitcoins, usually via SEPA transfer or PayPal. Note that in some countries (e.g. Germany) this is not possible - due to legal reasons. &lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
 &lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
 	&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
 	&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
 	&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it. They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
 	&lt;br /&gt;
Having said that there is a [http://99bitcoins.com/buying-bitcoins-with-paypal-a-practical-guide/ workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
 	&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://99bitcoins.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43825</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43825"/>
		<updated>2014-01-19T09:45:08Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: categorized localbitcoins correctly,and moved PayPal section to discourage new buyers from using it.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[http://localbitcoins.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
[http://www.belgacoin.com Belgacoin] allows you to buy bitcoins via SEPA transfer. It is fast, secure and cheap. No registration needed. We do not charge anything for this service, for the time being.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
 &lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
 	&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
 	&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
 	&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it. They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
 	&lt;br /&gt;
Having said that there is a [http://99bitcoins.com/buying-bitcoins-with-paypal-a-practical-guide/ workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
 	&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://99bitcoins.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via Online Auction ===&lt;br /&gt;
[http://ccauction.net CryptoCoins Auction] is a free of charge auction platform only for Bitcoins and other crypto currencies. On [http://ebay.com/ eBay] or [http://ricardo.ch/ Ricardo Switzerland] you can also buy Bitcoins, usually via SEPA transfer or PayPal. Note that in some countries (e.g. Germany) this is not possible - due to legal reasons. &lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43802</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43802"/>
		<updated>2014-01-18T17:02:47Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it? . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43385</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43385"/>
		<updated>2013-12-23T17:14:39Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it? . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=43363</id>
		<title>BitQuick.co</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BitQuick.co&amp;diff=43363"/>
		<updated>2013-12-22T14:35:58Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.bitquick.co BitQuick.co] is an instant buying and selling Bitcoin platform that allows buyers to connect directly to sellers via cash deposit or SEPA transfer. To purchase Bitcoins on BitQuick.co, a buyer deposits cash into the sellers account, and soon after emailing the deposit receipt, the Bitcoins are sent. &lt;br /&gt;
&lt;br /&gt;
[[BuyBitcoin.US]] became BitQuick.co 8/10/2013.&lt;br /&gt;
&lt;br /&gt;
BitQuick.co simplifies [[BitQuick.co#Using BitQuick.co|buying and selling Bitcoin to 3 easy, quick steps]]. It can be used to convert Bitcoin to FIAT, or FIAT to Bitcoin in hours. The service is comparable to a hybrid of the [[BitInstant]] and [[LocalBitcoins.com]] service. [[Image:BitQuickco.png|frame|BitQuick.co Logo]][[File:BuyBitcoinUSmap.png|thumb|Popular BitQuick.co USA Deposit Locations. Deposit locations also available in Canada, Europe, and more]]&lt;br /&gt;
&lt;br /&gt;
==Methods of Payment==&lt;br /&gt;
&lt;br /&gt;
===International (USA, CA, EU, RU, AU)===&lt;br /&gt;
&lt;br /&gt;
* Cash deposit &lt;br /&gt;
* SEPA transfer&lt;br /&gt;
&lt;br /&gt;
No other current payment methods are being accepted. Money order support may be added in the future.&lt;br /&gt;
&lt;br /&gt;
Orders must be paid for within 3 hours of the buyer hold being placed. Having 3 or more unpaid buyer holds within a 72 hour span will result in a ban from the service.&lt;br /&gt;
&lt;br /&gt;
ACH, Wire transfer, or any other payment method not listed are strictly prohibited.&lt;br /&gt;
&lt;br /&gt;
==Fees &amp;amp; Rates==&lt;br /&gt;
&lt;br /&gt;
BitQuick.co charges a 0% fee to sell Bitcoin and a 2% fee to buy Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bitcoins can be listed at any rate, and typically sell for around the Mt. Gox rate. This makes BitQuick.co the cheapest way to convert cash to Bitcoin in one day, or vice versa.&lt;br /&gt;
&lt;br /&gt;
==Using BitQuick.co==&lt;br /&gt;
===How to [https://www.bitquick.co/buy Buy Bitcoin] Instantly on BitQuick.co (2% fee)===&lt;br /&gt;
#Select an order from the [https://www.bitquick.co/buy current order book], enter your email and Bitcoin address and submit.&lt;br /&gt;
#Pay the described sum to the account shown on the confirmation page by going to any local branch of the sellers bank and filling out a deposit form with cash, or sending a SEPA transfer (EU customers). [http://www.wikihow.com/Fill-Out-a-Deposit-Slip How to fill out a deposit slip]&lt;br /&gt;
#Email the receipt to orders@bitquick.co.&lt;br /&gt;
&lt;br /&gt;
Your Bitcoin are sent within an hour of your receipt being received.&lt;br /&gt;
&lt;br /&gt;
===How to [https://www.bitquick.co/sell Sell Bitcoin] Instantly on BitQuick.co (0% fee)===&lt;br /&gt;
#Fill out the form on [https://www.bitquick.co/sell BitQuick.co].&lt;br /&gt;
#Deposit the amount of BTC for sale into your personalized escrow address.&lt;br /&gt;
#Receive cash deposits or SEPA transfers from buyers on BitQuick.co instantly.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
*256 bit SSL encryption&lt;br /&gt;
*Daily server backups&lt;br /&gt;
*Private keys for escrow addresses stored offline, ensuring no Bitcoin can be lost in case of a server compromise.&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
* [http://www.bitquick.co/faq FAQ] page&lt;br /&gt;
* E-mail: orders@bitquick.co&lt;br /&gt;
* Twitter: [http://twitter.com/bitquickco] and [http://twitter.com/buybitcoinus]&lt;br /&gt;
* Facebook: [http://facebook.com/bitquickco] and [http://facebook.com/buybitcoinus]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitquick.co BitQuick.co] Website&lt;br /&gt;
* [https://www.bitquick.co/faq BitQuick.co FAQ]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[Category:Financial]]&lt;br /&gt;
[[Category:Local]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43295</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43295"/>
		<updated>2013-12-18T09:40:07Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
Warning: If you clicked on the LocalBitcoins page listed in the past few days, you may have been phished! Local-btc.com is NOT LocalBitcoins!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43294</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43294"/>
		<updated>2013-12-18T09:39:25Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
{If you clicked on the LocalBitcoins page listed in the past few days, you may have been phished! Local-btc.com is NOT LocalBitcoins!}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43293</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43293"/>
		<updated>2013-12-18T09:39:07Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: WARNING! LOCAL-BTC.COM PHISHING SCAM!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
{{If you clicked on the LocalBitcoins page listed in the past few days, you may have been phished! Local-btc.com is NOT LocalBitcoins!}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42964</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42964"/>
		<updated>2013-12-08T17:40:09Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it? . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42963</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42963"/>
		<updated>2013-12-08T17:39:51Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: pointless intro section merged with actual intro&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it? . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42962</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42962"/>
		<updated>2013-12-08T17:38:43Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: Clean up of pointless sections and bitbrothers spam&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
=== Intro ===&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it? . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42882</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42882"/>
		<updated>2013-12-05T00:20:52Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to itץ . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42881</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42881"/>
		<updated>2013-12-05T00:20:01Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
=== Intro ===&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to itץ . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42252</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42252"/>
		<updated>2013-11-09T20:00:30Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Anonymity */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
=== Intro ===&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to itץ&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you&#039;re only looking to trade in Bitcoins you can trade via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://500plusforex.com Plus500].&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41809</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41809"/>
		<updated>2013-10-17T12:43:27Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Anonymity */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
=== Intro ===&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
Having said that [http://bitcoinwithpaypal.com there is a workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://Virrwox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41611</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41611"/>
		<updated>2013-10-09T04:20:03Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] does not collect any personal information due to a variety of legal loopholes. Cash deposits at a local bank are quick, secure, and easy. &lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=41569</id>
		<title>Selling bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=41569"/>
		<updated>2013-10-06T05:27:20Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* 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;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market. If a service quotes a price then it is not operating a market but instead is a broker that buys and/or sells coins. Those exchanges are found in the list of fixed-rate exchanges.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Adding Funds || Withdrawing Funds || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[Kraken]] || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (International bank wire)&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (International bank wire) || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br/&amp;gt;EUR (International bank wire)&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (International bank wire) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[MtGox]] ||BTC&amp;lt;br/&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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) || 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) ||&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 (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)&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 (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) || Language: English, Russian.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at BMO Bank of Montreal)&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) || &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) || &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;
|  [[CoinMKT]] || | BTC | LTC | PPC | TRC | NVC | NMC | FTC &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt;USD (P2P bank transfer at any US bank, 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 | LTC | PPC | TRC | NVC | NMC | FTC &amp;lt;br /&amp;gt;USD ([[Dwolla]])&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) || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt;Trade any currency pair&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Fast, web-based ID verification&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Focused on user experience&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Play money trading&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Based in Santa Monica, CA &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin Central]] || BTC&amp;lt;br/&amp;gt;EUR (SEPA bank transfer)&amp;lt;br/&amp;gt;International wire transfer || BTC&amp;lt;br/&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;International wire transfer || &lt;br /&gt;
|-&lt;br /&gt;
|  [[BTCTurk]] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &lt;br /&gt;
|-&lt;br /&gt;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || &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;
|  [[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) || &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) || &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) || || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Vircurex]] || BTC || BTC || Trading in many other P2P/Crypto currencies possible&lt;br /&gt;
|-&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;
* [[24change.com]] Automatic Bitcoin and e-currencies buy/sell service Bitcoin, USD, UAH, RUB, Visa, MasterCard, EgoPay, Payoneer, MoneyGram, OKPAY, WireTransfer, QIWI, Yandex Money, PayPal, PerfectMoney, Paymer, ePayments, LiqPay, Redpass, WESTERN UNION, International Banks&lt;br /&gt;
* [[ALFAcashier]] Instant exchange between Bitcoin, Litecoin, PerfectMoney, QIWI, Yandex Money&lt;br /&gt;
* [[Bahtcoin]] Trade BTC for Thai Baht, cash, 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.&lt;br /&gt;
* [[BTCHKEX]] Trade your BTCs for HKD.&lt;br /&gt;
* [https://bips.me BIPS] ([[BIPS|info]]) Withdraw funds as Danish Domestic Transfer, or ACH / Direct Deposit in any current, and Wire Transfer to Any Country.  DK-based&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 Nordic]] Sell bitcoins with withdrawal to PayPal or bank transfer.&lt;br /&gt;
* [[Bitcoini.com]] Trade bitcoins in Bulgaria and Romania for local currencies, USD worldwide with Western Union, MoneyGram&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, 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;
* [[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;
* [https://www.bitquick.co BitQuick.co][https://en.bitcoin.it/wiki/BitQuick.co (info)] Instant exchange to receive cash deposit or SEPA transfer to the seller&#039;s bank account for Bitcoin at any price set by seller.&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;
* [[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;
* [https://www.cryptxchange.com Cryptxchange] Sell bitcoins for USD or CAD Funds transfered VIA bank tranfer&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 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 payout and transparent prices based on near real-time exchange prices (select from multiple exchanges).&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 [[Pecunix]], [[AlertPay]], [[Skrill]]/Moneybookers, [[PayPal]], and more.&lt;br /&gt;
* [[LocalBitcoins]] Exchanges bitcoins for csah, bank wirte transfers, [[OKPay]], [[AlertPay]], [[Skrill]]/Moneybookers, [[PayPal]], [[Dwolla]] and more.&lt;br /&gt;
* [[Nanaimo Gold]] Redeem bitcoins 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;
* [http://jzn5w5pac26sqef4.onion.sh/ WeBuyBitcoins] Sell Bitcoins for ACH, PayPal, Cash In Mail, WU/MG.&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;
* [[Dagensia]] &#039;&#039;&#039;Fully licensed EU company&#039;&#039;&#039; exchanging Bitcoins, Bank Wire, SEPA EUR, Debit Cards. USD, EUR, GBP, CAD, CHF, SEK, AUD, CZK&lt;br /&gt;
* [http://artabit.com artaBit.com] ([[artaBit|info]]), Sell bitcoins in Indonesia for IDR (rupiah).&lt;br /&gt;
* [https://www.bitsofgold.co.il Bits Of Gold] ([[Bits of Gold|info]]), Sell bitcoins in Israel for ILS.&lt;br /&gt;
* [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]), sell bitcoins for [[MoneyPak]].&lt;br /&gt;
* [[WM-Center]] Buy/sell Bitcoin, exchange Bitcoin to other e-currencies (such as Perfect Money, PayPal, EgoPay, c-gold, Pecunix, etc) and vice versa.&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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=41142</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=41142"/>
		<updated>2013-09-19T21:17:03Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Market Exchanges */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for &#039;&#039;&#039;buying bitcoins&#039;&#039;&#039;. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
&lt;br /&gt;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market.   If a service quotes a price then it is not operating a [http://bitcoincharts.com/markets market] but instead is a broker that buys and/or sells coins.  Those exchanges are found in the list of [[Buying bitcoins#Fixed_Rate_Exchanges_.26_Others|fixed-rate exchanges]].&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 || Notes  &lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co]([https://en.bitcoin.it/wiki/BitQuick.co info)] || BTC&amp;lt;br/&amp;gt;Cash Deposit &amp;lt;br/&amp;gt; SEPA Transfer (International) || BTC|| Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:ANX.png|20px|link=https://anx.hk]] [https://anx.hk Asia Nexgen]([https://en.bitcoin.it/wiki/Asia_Nexgen_Bitcoin_Exchange info)] || BTC&amp;lt;br /&amp;gt;USD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (Local Bank Transfer)&amp;lt;br /&amp;gt;CNY (International Bank Wire)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;USD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (Local Bank Transfer)&amp;lt;br /&amp;gt;CNY (International Bank Wire) || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Daily processing of withdrawals and deposits Mon-Fri&amp;lt;li&amp;gt; Registered and based in Hong Kong&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; An approved Money Services Operator (MSO) with a license issued by the Hong Kong Customs and Excise Department&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API Available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Multilingual support (English, Traditional Chinese, Simplified Chinese)&amp;lt;/ul&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
|  [[File:bitbox.png|20px|link=https://bitbox.mx]] [https://bitbox.mx BitBox] ([[BitBox|info]]) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&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) || &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [http://BTCTurk.com BTCTurk.com] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &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 (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 (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 (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) || 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) || &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;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || Based in Singapore&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SE]] || BTC &amp;lt;br/&amp;gt; SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || BTC&amp;lt;br/&amp;gt;SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || Based in Sweden&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) || 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) || &lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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)  || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at 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) || &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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([http://www.paysafecard.com PaySafe Card])&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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || 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;
| [https://www.bitcointoyou.com BitcoinToYou] || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || Language: Portuguese (português), customer can buy in cash ou bank deposit at HSBC, SANTANDER, ITAÚ, CAIXA, BRADESCO and BANCO DO BRASIL.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&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 || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://24change.com 24Change.com] ([[24change.com|info]]) || &lt;br /&gt;
* USD, UAH, RUB, Visa, MasterCard &lt;br /&gt;
* C-Coin, eCoin, EgoPay, Payza, Payoneer, EPESE, MoneyGram, OKPAY, WireTransfer, QIWI, Yandex Money, BTC-E code, PayPal, PerfectMoney, Paymer, ePayments, LiqPay, Redpass, WESTERN UNION, C-Gold, Pecunix &lt;br /&gt;
* International Banks, Sberbank, Alfa-Bank, Privat24, Svyaznoy Bank, VTB24&lt;br /&gt;
|| &lt;br /&gt;
* Automatic bitcoin and e-currencies buy/sell service &lt;br /&gt;
* 24/7/365 fast and reliable e-currencies exchange &lt;br /&gt;
* Unlimited reserves &lt;br /&gt;
* 15% Affiliate program&lt;br /&gt;
|-&lt;br /&gt;
| [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || Cash Deposit or SEPA Transfer Only (International) || Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
| [https://flatbitcoin.com FlatBitcoin ]  ([https://flatbitcoin.com info)] || PayPal || Buy Bitcoins using PayPal ° Fair rates (Bitstamp price + 1-10% depending on the amount size.)  ° Fair Speed ( 1 to 5 days) ° &lt;br /&gt;
|-&lt;br /&gt;
| [https://www.getbitcoin.com.au Bitcoin (Australia)] || AUD (Bank Deposit)  || Bitcoin (Australia) / [https://www.getbitcoin.com.au www.getbitcoin.com.au] offers rapid transfer at low rates.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] ([[BIPS|info]]) || CAD (Cash deposits in Canada&amp;lt;br /&amp;gt;Any Currency (Wire Transfer - Any Country)&amp;lt;br /&amp;gt;USD || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;DK-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/BitcoinInternetPaymentSystem BIPS GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://bips.me/connect/BitcoinInternetPaymentSystemAPI.pdf REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|  [[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) || AUD (Cash deposits) ||  Fast transaction processing, market rates with low commissions and no fees.  &lt;br /&gt;
Contact BUYbulk@bitXoin.com for special rates on BUY BTC transactions over $10,000 and SELLbulk@bitXoin.com for SELL BTC transactions over BTC50 &lt;br /&gt;
https://bitXoin.com/&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitbrothersllc.com BitBrothers LLC] || Bank Transfer/Cash/Moneygram || If you are looking for an extremelly simple and anonymous way to purchase bitcoins, this is the best place to do it. We are so sure you will be a repeat customer that we are willing to provide discounts for first time buyers. Best Customer service in the industry.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=237164.0 Bitcoin-Brokers &amp;lt;br /&amp;gt;(USA)] || Cash deposit || At major banks like Bank of America, Chase, Wells Fargo, PNC, Citibank. No ID, No registration. Immediate fundings.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoini.com Bitcoini.com &amp;lt;br /&amp;gt;(Bulgaria, Romania)] || BGN (Bank deposit, Cash, EasyPay, Post, Econt)&amp;lt;br /&amp;gt;RON (Bank deposit)&amp;lt;br /&amp;gt;USD (Western Union, MoneyGram) || Fast and secure way to buy/sell bitcoins. Live support&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitcoinbymobile.com BitcoinByMobile.com] || Mobile Phone (Premium SMS)|| Buy bitcoins instantly using just your mobile phone. No registration or personal financial information needed. Available in: Austria, France, Germany, Luxembourg, Netherlands, Portugal, Spain, and United Kingdom&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.btc-dealer.com BTC-Dealer] || Credit Card through Liqpay || No signup required. Instant deposit to any bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.cryptxchange.com ACryptxchange] || USD (Cash Deposit)&amp;lt;br /&amp;gt;USD (Wire Transfer)&amp;lt;br /&amp;gt;CAD (Cash Deposit)&amp;lt;br /&amp;gt;CAD (Wire Transfer)&amp;lt;br /&amp;gt;You may make cash deposits at any Chase Bank Internationally (ARS, GBP, EUR, AUD, BRL, CLP, COP, EGP, KYD, SAR, CNY, AED, JPY, INR || A multinational US based cryptographic currency exchange. No login or account creation required. No identity verification required. Exquisite customer service. Average transaction time under two hours depending on the time of the day. One of the most anonymous and reliable exchanges on the net. We use SSL &amp;amp; AES-256 military grade encryption for all communication&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.alfacashier.com ALFAcashier] || QIWI RUB&amp;lt;Br/&amp;gt;Yandex Money RUB&amp;lt;br/&amp;gt;Litecoin&amp;lt;br/&amp;gt;PerfectMoney&amp;lt;br/&amp;gt;Visa  || Instant exchanger. Supports major payment systems and visa funding is also available.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]) || Moneypak (USD) &amp;lt;======&amp;gt; BTC &amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt; Moneypak (USD) &amp;lt;br /&amp;gt; ReLoadit, etc. (USD) &amp;lt;====&amp;gt; BTC&amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt;  ReLoadit, etc. (USD) || Pays a bonus over market for your BTC &amp;lt;br /&amp;gt; Charges a fee over market for your Moneypak, etc. &amp;lt;br /&amp;gt; Only accepts codes from original purchaser &amp;lt;br /&amp;gt; Attempts to have regular customers processed within 24 hrs &amp;lt;br /&amp;gt; Available for discussion via TorChat&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || 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://bittylicious.com Bittylicious] ([[Bittylicious|info]]) || GBP || Near instant transactions via UK Bank Transfer (Faster Payments only). No sign up required but can buy more if registered.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || 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;
| [https://www.bitcointrader.com.au Bitcointrader] ([[Bitcointrader|info]]) || AUD (Cash deposit) || Lowest fee in Australia! Only 5%. Buy and sell bitcoins quickly and easily! Cash deposit at any Westpac Bank and National Australia Bank branch in Australia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || 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]] || 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]] || 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]] || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coin-Daddy]] || Buy bitcoins with PayPal || No verification needed. Customer just needs to pay with PayPal, leave the Wallet address and then he receives his coins. Sells Bitcoins, Litecoins and PPCoins.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || 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]] || &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;
| [[Spend Bitcoins]] || 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]]) || 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]] || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&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]] || CZK || Person-to-person, various methods.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.BitcoinZAP.com BitcoinZAP] || SEPA bank transfer - EUR &amp;lt;br&amp;gt; International bank transfer - EUR, USD &amp;lt;br&amp;gt; Western Union &amp;lt;br&amp;gt; MoneyGram &amp;lt;br&amp;gt; Cash (in the mail) - EUR, USD, CAD, GBP, HKD, JPY, PLN, AUD, CHF, CZK, DKK, HUF, MOP, SEK, NOK || Bitcoins usually delivered in less than 24 hours after payment is received&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || Person-to-person, various methods || 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]] || 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]]) || 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;
| [https://www.dagensia.eu Dagensia] ([[Dagensia|info]]) || &lt;br /&gt;
* SEPA Bank Transfer (EUR)&lt;br /&gt;
* Reloadable Debit Card (EUR, USD)&lt;br /&gt;
* Sofort Banking (EUR)&lt;br /&gt;
* Direct Banking (EUR)&lt;br /&gt;
* Payza (official Exchanger)&lt;br /&gt;
|| Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Payza. Sell and buy your Bitcoins through Wire, or SEPA EUR transfer, [[UKash]], Direct Banking, Debit Cards. &#039;&#039;&#039;Fully licensed exchanger&#039;&#039;&#039;, supervised by Czech National Bank&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || 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;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]] || Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || Digital Currency &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]] || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Cash, Webmoney || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Person-to-person, various methods ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Person-to-person via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/cash-deposit/ Cash deposit]&amp;lt;br&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/okpay/ OKPay]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/paypal/ PayPal]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/dwolla/ Dwolla]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/sepa-eu-bank-transfer/ SEPA Bank transfer] || Find your local bitcoin dealer, or purchase safely online using escrow! With dynamic pricing with equations.&amp;lt;br/&amp;gt;eWallet&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Affiliate program]&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/api-docs/ API]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Use the Dutch iDEAL payment system to receive Bitcoins within minutes. Prices are based on near real-time exchange prices (select the best out of multiple exchanges).&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || 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 || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || 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]] || 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 (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] || EUR (ATM/Multibanco) &amp;lt;br&amp;gt; EUR (bank transfer) &amp;lt;br&amp;gt; EUR (money order) &amp;lt;br&amp;gt; EUR (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;
| [[Mang Sweeney]] || 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]] || 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]]) || 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://bitonic.nl Bitonic.nl] || EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || 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] || 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]] || 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 (via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitplaats.nl Bitplaats.nl] || EUR (iDEAL) || Buy bitcoins instantly, pay with iDEAL. Buy bitcoin from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://artabit.com artaBit.com] ([[artaBit|info]]) || IDR || Buy bitcoins in Indonesia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitsofgold.co.il BitsOfGold.co.il] ([[Bits_of_Gold|info]]) || ILS || Buy bitcoins from Israel.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.rugatu.com rugatu.com] || EUR || Buy bitcoins with Neteller.&lt;br /&gt;
|-&lt;br /&gt;
|  [http://wmeng.exchanger.ru WMeng.Exchanger.ru] || Buy bitcoins with:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Vietnamese Dongs&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;br /&amp;gt;Sell bitcoins for:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles || The exchange service of WebMoney Transfer system. WMT has a special units named WMX to operate BTC, which can be exchanged and/or withdrawn&lt;br /&gt;
|-&lt;br /&gt;
| [[WM-Center]] || USD (Western Union, MoneyGram) &amp;lt;br/&amp;gt; EUR &amp;lt;br/&amp;gt; RUR &amp;lt;br/&amp;gt; THB &amp;lt;br/&amp;gt; UAH || 24/7/365 support &amp;lt;br/&amp;gt; English, Spanish, Russian versions &amp;lt;br/&amp;gt; Fast reliable service since 2005&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
Liquidity providers for transactions of size ($10,000 or larger).&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.bitbrothersllc.com BitBrothers LLC] || Direct purchases up to $10,000 || USD (Bank Deposit at a Chase bank OR cash orders including cashiers checks and money orders) || BTC || Best customer service in the industry and quickest transaction speeds.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 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;
| [http://www.indx.ru/?lang=en-US INDX] || Stock market, where BTC are also traded || - || - || Trader`s account can be withdrawn with BTC or with USD via WebMoney.&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 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;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &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;
* [[: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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=41080</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=41080"/>
		<updated>2013-09-17T23:02:07Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Market Exchanges */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for &#039;&#039;&#039;buying bitcoins&#039;&#039;&#039;. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
&lt;br /&gt;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market.   If a service quotes a price then it is not operating a [http://bitcoincharts.com/markets market] but instead is a broker that buys and/or sells coins.  Those exchanges are found in the list of [[Buying bitcoins#Fixed_Rate_Exchanges_.26_Others|fixed-rate exchanges]].&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 || Notes  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co]([https://en.bitcoin.it/wiki/BitQuick.co info)] || BTC&amp;lt;br/&amp;gt;Cash Deposit &amp;lt;br/&amp;gt; SEPA Transfer (International) || BTC|| Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:ANX.png|20px|link=https://anx.hk]] [https://anx.hk Asia Nexgen]([https://en.bitcoin.it/wiki/Asia_Nexgen_Bitcoin_Exchange info)] || BTC&amp;lt;br /&amp;gt;USD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (Local Bank Transfer)&amp;lt;br /&amp;gt;CNY (International Bank Wire)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;USD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (Local Bank Transfer)&amp;lt;br /&amp;gt;CNY (International Bank Wire) || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Daily processing of withdrawals and deposits Mon-Fri&amp;lt;li&amp;gt; Registered and based in Hong Kong&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API Available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Multilingual support (English, Traditional Chinese, Simplified Chinese)&amp;lt;/ul&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
|  [[File:bitbox.png|20px|link=https://bitbox.mx]] [https://bitbox.mx BitBox] ([[BitBox|info]]) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&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) || &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [http://BTCTurk.com BTCTurk.com] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &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 (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 (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 (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) || 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) || &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;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || Based in Singapore&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SE]] || BTC &amp;lt;br/&amp;gt; SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || BTC&amp;lt;br/&amp;gt;SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || Based in Sweden&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) || 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) || &lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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)  || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at 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) || &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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([http://www.paysafecard.com PaySafe Card])&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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || 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;
| [https://www.bitcointoyou.com BitcoinToYou] || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || Language: Portuguese (português), customer can buy in cash ou bank deposit at HSBC, SANTANDER, ITAÚ, CAIXA, BRADESCO and BANCO DO BRASIL.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&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 || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://24change.com 24Change.com] ([[24change.com|info]]) || &lt;br /&gt;
* USD, UAH, RUB, Visa, MasterCard &lt;br /&gt;
* C-Coin, eCoin, EgoPay, Payza, Payoneer, EPESE, MoneyGram, OKPAY, WireTransfer, QIWI, Yandex Money, BTC-E code, PayPal, PerfectMoney, Paymer, ePayments, LiqPay, Redpass, WESTERN UNION, C-Gold, Pecunix &lt;br /&gt;
* International Banks, Sberbank, Alfa-Bank, Privat24, Svyaznoy Bank, VTB24&lt;br /&gt;
|| &lt;br /&gt;
* Automatic bitcoin and e-currencies buy/sell service &lt;br /&gt;
* 24/7/365 fast and reliable e-currencies exchange &lt;br /&gt;
* Unlimited reserves &lt;br /&gt;
* 15% Affiliate program&lt;br /&gt;
|-&lt;br /&gt;
| [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || Cash Deposit or SEPA Transfer Only (International) || Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
| [https://flatbitcoin.com FlatBitcoin ]  ([https://flatbitcoin.com info)] || PayPal || Buy Bitcoins using PayPal ° Fair rates (Bitstamp price + 1-10% depending on the amount size.)  ° Fair Speed ( 1 to 5 days) ° &lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] ([[BIPS|info]]) || CAD (Cash deposits in Canada&amp;lt;br /&amp;gt;Any Currency (Wire Transfer - Any Country)&amp;lt;br /&amp;gt;USD || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;DK-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/BitcoinInternetPaymentSystem BIPS GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://bips.me/connect/BitcoinInternetPaymentSystemAPI.pdf REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) || AUD (Cash deposits) ||  Fast transaction processing, market rates with low commissions and no fees.  &lt;br /&gt;
Contact BUYbulk@bitXoin.com for special rates on BUY BTC transactions over $10,000 and SELLbulk@bitXoin.com for SELL BTC transactions over BTC50 &lt;br /&gt;
https://bitXoin.com/&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitbrothersllc.com BitBrothers LLC] || Bank Transfer/Cash/Moneygram || If you are looking for an extremelly simple and anonymous way to purchase bitcoins, this is the best place to do it. We are so sure you will be a repeat customer that we are willing to provide discounts for first time buyers. Best Customer service in the industry.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=237164.0 Bitcoin-Brokers &amp;lt;br /&amp;gt;(USA)] || Cash deposit || At major banks like Bank of America, Chase, Wells Fargo, PNC, Citibank. No ID, No registration. Immediate fundings.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoini.com Bitcoini.com &amp;lt;br /&amp;gt;(Bulgaria, Romania)] || BGN (Bank deposit, Cash, EasyPay, Post, Econt)&amp;lt;br /&amp;gt;RON (Bank deposit)&amp;lt;br /&amp;gt;USD (Western Union, MoneyGram) || Fast and secure way to buy/sell bitcoins. Live support&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitcoinbymobile.com BitcoinByMobile.com] || Mobile Phone (Premium SMS)|| Buy bitcoins instantly using just your mobile phone. No registration or personal financial information needed. Available in: Austria, France, Germany, Luxembourg, Netherlands, Portugal, Spain, and United Kingdom&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.btc-dealer.com BTC-Dealer] || Credit Card through Liqpay || No signup required. Instant deposit to any bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.cryptxchange.com ACryptxchange] || USD (Cash Deposit)&amp;lt;br /&amp;gt;USD (Wire Transfer)&amp;lt;br /&amp;gt;CAD (Cash Deposit)&amp;lt;br /&amp;gt;CAD (Wire Transfer)&amp;lt;br /&amp;gt;You may make cash deposits at any Chase Bank Internationally (ARS, GBP, EUR, AUD, BRL, CLP, COP, EGP, KYD, SAR, CNY, AED, JPY, INR || A multinational US based cryptographic currency exchange. No login or account creation required. No identity verification required. Exquisite customer service. Average transaction time under two hours depending on the time of the day. One of the most anonymous and reliable exchanges on the net. We use SSL &amp;amp; AES-256 military grade encryption for all communication&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.alfacashier.com ALFAcashier] || QIWI RUB&amp;lt;Br/&amp;gt;Yandex Money RUB&amp;lt;br/&amp;gt;Litecoin&amp;lt;br/&amp;gt;PerfectMoney&amp;lt;br/&amp;gt;Visa  || Instant exchanger. Supports major payment systems and visa funding is also available.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.getbitcoin.com.au Bitcoin (Australia)] || AUD (Bank Deposit)  || Bitcoin (Australia) / [https://www.getbitcoin.com.au www.getbitcoin.com.au] offers rapid transfer at low rates.&lt;br /&gt;
|-&lt;br /&gt;
| [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]) || Moneypak (USD) &amp;lt;======&amp;gt; BTC &amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt; Moneypak (USD) &amp;lt;br /&amp;gt; ReLoadit, etc. (USD) &amp;lt;====&amp;gt; BTC&amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt;  ReLoadit, etc. (USD) || Pays a bonus over market for your BTC &amp;lt;br /&amp;gt; Charges a fee over market for your Moneypak, etc. &amp;lt;br /&amp;gt; Only accepts codes from original purchaser &amp;lt;br /&amp;gt; Attempts to have regular customers processed within 24 hrs &amp;lt;br /&amp;gt; Available for discussion via TorChat&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || 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://bittylicious.com Bittylicious] ([[Bittylicious|info]]) || GBP || Near instant transactions via UK Bank Transfer (Faster Payments only). No sign up required but can buy more if registered.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || 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;
| [https://www.bitcointrader.com.au Bitcointrader] ([[Bitcointrader|info]]) || AUD (Cash deposit) || Lowest fee in Australia! Only 5%. Buy and sell bitcoins quickly and easily! Cash deposit at any Westpac Bank and National Australia Bank branch in Australia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || 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]] || 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]] || 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]] || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coin-Daddy]] || Buy bitcoins with PayPal || No verification needed. Customer just needs to pay with PayPal, leave the Wallet address and then he receives his coins. Sells Bitcoins, Litecoins and PPCoins.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || 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]] || &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;
| [[Spend Bitcoins]] || 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]]) || 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]] || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&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]] || CZK || Person-to-person, various methods.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.BitcoinZAP.com BitcoinZAP] || SEPA bank transfer - EUR &amp;lt;br&amp;gt; International bank transfer - EUR, USD &amp;lt;br&amp;gt; Western Union &amp;lt;br&amp;gt; MoneyGram &amp;lt;br&amp;gt; Cash (in the mail) - EUR, USD, CAD, GBP, HKD, JPY, PLN, AUD, CHF, CZK, DKK, HUF, MOP, SEK, NOK || Bitcoins usually delivered in less than 24 hours after payment is received&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || Person-to-person, various methods || 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]] || 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]]) || 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;
| [https://www.dagensia.eu Dagensia] ([[Dagensia|info]]) || &lt;br /&gt;
* SEPA Bank Transfer (EUR)&lt;br /&gt;
* Reloadable Debit Card (EUR, USD)&lt;br /&gt;
* Sofort Banking (EUR)&lt;br /&gt;
* Direct Banking (EUR)&lt;br /&gt;
* Payza (official Exchanger)&lt;br /&gt;
|| Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Payza. Sell and buy your Bitcoins through Wire, or SEPA EUR transfer, [[UKash]], Direct Banking, Debit Cards. &#039;&#039;&#039;Fully licensed exchanger&#039;&#039;&#039;, supervised by Czech National Bank&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || 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;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]] || Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || Digital Currency &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]] || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Cash, Webmoney || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Person-to-person, various methods ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Person-to-person via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/cash-deposit/ Cash deposit]&amp;lt;br&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/okpay/ OKPay]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/paypal/ PayPal]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/dwolla/ Dwolla]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/sepa-eu-bank-transfer/ SEPA Bank transfer] || Find your local bitcoin dealer, or purchase safely online using escrow! With dynamic pricing with equations.&amp;lt;br/&amp;gt;eWallet&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Affiliate program]&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/api-docs/ API]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Use the Dutch iDEAL payment system to receive Bitcoins within minutes. Prices are based on near real-time exchange prices (select the best out of multiple exchanges).&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || 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 || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || 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]] || 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 (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] || EUR (ATM/Multibanco) &amp;lt;br&amp;gt; EUR (bank transfer) &amp;lt;br&amp;gt; EUR (money order) &amp;lt;br&amp;gt; EUR (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;
| [[Mang Sweeney]] || 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]] || 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]]) || 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://bitonic.nl Bitonic.nl] || EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || 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] || 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]] || 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 (via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitplaats.nl Bitplaats.nl] || EUR (iDEAL) || Buy bitcoins instantly, pay with iDEAL. Buy bitcoin from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://artabit.com artaBit.com] ([[artaBit|info]]) || IDR || Buy bitcoins in Indonesia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitsofgold.co.il BitsOfGold.co.il] ([[Bits_of_Gold|info]]) || ILS || Buy bitcoins from Israel.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.rugatu.com rugatu.com] || EUR || Buy bitcoins with Neteller.&lt;br /&gt;
|-&lt;br /&gt;
|  [http://wmeng.exchanger.ru WMeng.Exchanger.ru] || Buy bitcoins with:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Vietnamese Dongs&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;br /&amp;gt;Sell bitcoins for:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles || The exchange service of WebMoney Transfer system. WMT has a special units named WMX to operate BTC, which can be exchanged and/or withdrawn&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
Liquidity providers for transactions of size ($10,000 or larger).&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.bitbrothersllc.com BitBrothers LLC] || Direct purchases up to $10,000 || USD (Bank Deposit at a Chase bank OR cash orders including cashiers checks and money orders) || BTC || Best customer service in the industry and quickest transaction speeds.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 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;
| [http://www.indx.ru/?lang=en-US INDX] || Stock market, where BTC are also traded || - || - || Trader`s account can be withdrawn with BTC or with USD via WebMoney.&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 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;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &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;
* [[: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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41020</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41020"/>
		<updated>2013-09-13T02:47:14Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (International) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Buying_Bitcoins_(the_newbie_version)&amp;diff=41019</id>
		<title>Talk:Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Buying_Bitcoins_(the_newbie_version)&amp;diff=41019"/>
		<updated>2013-09-13T02:46:55Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To other guy: You can have international section.&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Buying_Bitcoins_(the_newbie_version)&amp;diff=41018</id>
		<title>Talk:Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Buying_Bitcoins_(the_newbie_version)&amp;diff=41018"/>
		<updated>2013-09-13T02:46:35Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: Created page with &amp;quot;You can have international.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can have international.&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41017</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=41017"/>
		<updated>2013-09-13T02:46:16Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=41000</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=41000"/>
		<updated>2013-09-12T11:15:27Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Market Exchanges */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for &#039;&#039;&#039;buying bitcoins&#039;&#039;&#039;. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
&lt;br /&gt;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market.   If a service quotes a price then it is not operating a [http://bitcoincharts.com/markets market] but instead is a broker that buys and/or sells coins.  Those exchanges are found in the list of [[Buying bitcoins#Fixed_Rate_Exchanges_.26_Others|fixed-rate exchanges]].&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 || Notes  &lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co]([https://en.bitcoin.it/wiki/BitQuick.co info)] || BTC&amp;lt;br/&amp;gt;Cash Deposit &amp;lt;br/&amp;gt; SEPA Transfer (International) || BTC|| Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:ANX.png|20px|link=https://anx.hk]] [https://anx.hk Asia Nexgen]([https://en.bitcoin.it/wiki/Asia_Nexgen_Bitcoin_Exchange info)] || BTC&amp;lt;br /&amp;gt;USD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (Local Bank Transfer)&amp;lt;br /&amp;gt;CNY (International Bank Wire)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;USD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (International Bank Wire)&amp;lt;br /&amp;gt;HKD (Local Bank Transfer)&amp;lt;br /&amp;gt;CNY (International Bank Wire) || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Daily processing of withdrawals and deposits Mon-Fri&amp;lt;li&amp;gt; Registered and based in Hong Kong&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API Available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Multilingual support (English, Traditional Chinese, Simplified Chinese)&amp;lt;/ul&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
|  [[File:bitbox.png|20px|link=https://bitbox.mx]] [https://bitbox.mx BitBox] ([[BitBox|info]]) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&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) || &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [http://BTCTurk.com BTCTurk.com] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &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 (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 (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 (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) || 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) || &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;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || Based in Singapore&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SE]] || BTC &amp;lt;br/&amp;gt; SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || BTC&amp;lt;br/&amp;gt;SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || Based in Sweden&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) || 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) || &lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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)  || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at 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) || &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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([http://www.paysafecard.com PaySafe Card])&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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || 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;
| [https://www.bitcointoyou.com BitcoinToYou] || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || Language: Portuguese (português), customer can buy in cash ou bank deposit at HSBC, SANTANDER, ITAÚ, CAIXA, BRADESCO and BANCO DO BRASIL.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&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 || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || Cash Deposit or SEPA Transfer Only (International) || Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] ([[BIPS|info]]) || CAD (Cash deposits in Canada&amp;lt;br /&amp;gt;Any Currency (Wire Transfer - Any Country)&amp;lt;br /&amp;gt;USD || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;DK-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/BitcoinInternetPaymentSystem BIPS GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://bips.me/connect/BitcoinInternetPaymentSystemAPI.pdf REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) || AUD (Cash deposits) ||  Fast transaction processing, market rates with low commissions and no fees.  &lt;br /&gt;
Contact BUYbulk@bitXoin.com for special rates on BUY BTC transactions over $10,000 and SELLbulk@bitXoin.com for SELL BTC transactions over BTC50 &lt;br /&gt;
https://bitXoin.com/&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitbrothersllc.com BitBrothers LLC] || Bank Transfer/Cash/Moneygram || If you are looking for an extremelly simple and anonymous way to purchase bitcoins, this is the best place to do it. We are so sure you will be a repeat customer that we are willing to provide discounts for first time buyers. Best Customer service in the industry.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=237164.0 Bitcoin-Brokers &amp;lt;br /&amp;gt;(USA)] || Cash deposit || At major banks like Bank of America, Chase, Wells Fargo, PNC, Citibank. No ID, No registration. Immediate fundings.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoini.com Bitcoini.com &amp;lt;br /&amp;gt;(Bulgaria, Romania)] || BGN (Bank deposit, Cash, EasyPay, Post, Econt)&amp;lt;br /&amp;gt;RON (Bank deposit)&amp;lt;br /&amp;gt;USD (Western Union, MoneyGram) || Fast and secure way to buy/sell bitcoins. Live support&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitcoinbymobile.com BitcoinByMobile.com] || Mobile Phone (Premium SMS)|| Buy bitcoins instantly using just your mobile phone. No registration or personal financial information needed. Available in: Austria, France, Germany, Luxembourg, Netherlands, Portugal, Spain, and United Kingdom&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.btc-dealer.com BTC-Dealer] || Credit Card through Liqpay || No signup required. Instant deposit to any bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.cryptxchange.com ACryptxchange] || USD (Cash Deposit)&amp;lt;br /&amp;gt;USD (Wire Transfer)&amp;lt;br /&amp;gt;CAD (Cash Deposit)&amp;lt;br /&amp;gt;CAD (Wire Transfer)&amp;lt;br /&amp;gt;You may make cash deposits at any Chase Bank Internationally (ARS, GBP, EUR, AUD, BRL, CLP, COP, EGP, KYD, SAR, CNY, AED, JPY, INR || A multinational US based cryptographic currency exchange. No login or account creation required. No identity verification required. Exquisite customer service. Average transaction time under two hours depending on the time of the day. One of the most anonymous and reliable exchanges on the net. We use SSL &amp;amp; AES-256 military grade encryption for all communication&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.alfacashier.com ALFAcashier] || QIWI RUB&amp;lt;Br/&amp;gt;Yandex Money RUB&amp;lt;br/&amp;gt;Litecoin&amp;lt;br/&amp;gt;PerfectMoney&amp;lt;br/&amp;gt;Visa  || Instant exchanger. Supports major payment systems and visa funding is also available.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.getbitcoin.com.au Bitcoin (Australia)] || AUD (Bank Deposit)  || Bitcoin (Australia) / [https://www.getbitcoin.com.au www.getbitcoin.com.au] offers rapid transfer at low rates.&lt;br /&gt;
|-&lt;br /&gt;
| [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]) || Moneypak (USD) &amp;lt;======&amp;gt; BTC &amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt; Moneypak (USD) &amp;lt;br /&amp;gt; ReLoadit, etc. (USD) &amp;lt;====&amp;gt; BTC&amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt;  ReLoadit, etc. (USD) || Pays a bonus over market for your BTC &amp;lt;br /&amp;gt; Charges a fee over market for your Moneypak, etc. &amp;lt;br /&amp;gt; Only accepts codes from original purchaser &amp;lt;br /&amp;gt; Attempts to have regular customers processed within 24 hrs &amp;lt;br /&amp;gt; Available for discussion via TorChat&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || 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://bittylicious.com Bittylicious] ([[Bittylicious|info]]) || GBP || Near instant transactions via UK Bank Transfer (Faster Payments only). No sign up required but can buy more if registered.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || 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;
| [https://www.bitcointrader.com.au Bitcointrader] ([[Bitcointrader|info]]) || AUD (Cash deposit) || Lowest fee in Australia! Only 5%. Buy and sell bitcoins quickly and easily! Cash deposit at any Westpac Bank and National Australia Bank branch in Australia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || 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]] || 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]] || 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]] || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coin-Daddy]] || Buy bitcoins with PayPal || No verification needed. Customer just needs to pay with PayPal, leave the Wallet address and then he receives his coins. Sells Bitcoins, Litecoins and PPCoins.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || 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]] || &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;
| [[Spend Bitcoins]] || 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]]) || 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]] || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&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]] || CZK || Person-to-person, various methods.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.BitcoinZAP.com BitcoinZAP] || SEPA bank transfer - EUR &amp;lt;br&amp;gt; International bank transfer - EUR, USD &amp;lt;br&amp;gt; Western Union &amp;lt;br&amp;gt; MoneyGram &amp;lt;br&amp;gt; Cash (in the mail) - EUR, USD, CAD, GBP, HKD, JPY, PLN, AUD, CHF, CZK, DKK, HUF, MOP, SEK, NOK || Bitcoins usually delivered in less than 24 hours after payment is received&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || Person-to-person, various methods || 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]] || 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]]) || 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;
| [https://www.dagensia.eu Dagensia] ([[Dagensia|info]]) || &lt;br /&gt;
* SEPA Bank Transfer (EUR)&lt;br /&gt;
* Reloadable Debit Card (EUR, USD)&lt;br /&gt;
* Sofort Banking (EUR)&lt;br /&gt;
* Direct Banking (EUR)&lt;br /&gt;
* Payza (official Exchanger)&lt;br /&gt;
|| Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Payza. Sell and buy your Bitcoins through Wire, or SEPA EUR transfer, [[UKash]], Direct Banking, Debit Cards. &#039;&#039;&#039;Fully licensed exchanger&#039;&#039;&#039;, supervised by Czech National Bank&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || 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;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]] || Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || Digital Currency &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]] || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Cash, Webmoney || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Person-to-person, various methods ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Person-to-person via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/cash-deposit/ Cash deposit]&amp;lt;br&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/okpay/ OKPay]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/paypal/ PayPal]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/dwolla/ Dwolla]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/sepa-eu-bank-transfer/ SEPA Bank transfer] || Find your local bitcoin dealer, or purchase safely online using escrow! With dynamic pricing with equations.&amp;lt;br/&amp;gt;eWallet&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Affiliate program]&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/api-docs/ API]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Use the Dutch iDEAL payment system to receive Bitcoins within minutes. Prices are based on near real-time exchange prices (select the best out of multiple exchanges).&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || 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 || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || 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]] || 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 (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] || EUR (ATM/Multibanco) &amp;lt;br&amp;gt; EUR (bank transfer) &amp;lt;br&amp;gt; EUR (money order) &amp;lt;br&amp;gt; EUR (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;
| [[Mang Sweeney]] || 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]] || 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]]) || 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://bitonic.nl Bitonic.nl] || EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || 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] || 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]] || 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 (via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitplaats.nl Bitplaats.nl] || EUR (iDEAL) || Buy bitcoins instantly, pay with iDEAL. Buy bitcoin from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://artabit.com artaBit.com] ([[artaBit|info]]) || IDR || Buy bitcoins in Indonesia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitsofgold.co.il BitsOfGold.co.il] ([[Bits_of_Gold|info]]) || ILS || Buy bitcoins from Israel.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.rugatu.com rugatu.com] || EUR || Buy bitcoins with Neteller.&lt;br /&gt;
|-&lt;br /&gt;
|  [http://wmeng.exchanger.ru WMeng.Exchanger.ru] || Buy bitcoins with:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Vietnamese Dongs&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;br /&amp;gt;Sell bitcoins for:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles || The exchange service of WebMoney Transfer system. WMT has a special units named WMX to operate BTC, which can be exchanged and/or withdrawn&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
Liquidity providers for transactions of size ($10,000 or larger).&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.bitbrothersllc.com BitBrothers LLC] || Direct purchases up to $10,000 || USD (Bank Deposit at a Chase bank OR cash orders including cashiers checks and money orders) || BTC || Best customer service in the industry and quickest transaction speeds.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 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;
| [http://www.indx.ru/?lang=en-US INDX] || Stock market, where BTC are also traded || - || - || Trader`s account can be withdrawn with BTC or with USD via WebMoney.&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 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;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &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;
* [[: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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40996</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40996"/>
		<updated>2013-09-12T03:09:50Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Market Exchanges */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for &#039;&#039;&#039;buying bitcoins&#039;&#039;&#039;. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
&lt;br /&gt;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market.   If a service quotes a price then it is not operating a [http://bitcoincharts.com/markets market] but instead is a broker that buys and/or sells coins.  Those exchanges are found in the list of [[Buying bitcoins#Fixed_Rate_Exchanges_.26_Others|fixed-rate exchanges]].&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 || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co]([https://en.bitcoin.it/wiki/BitQuick.co info)] || BTC&amp;lt;br/&amp;gt;Cash Deposit &amp;lt;br/&amp;gt; SEPA Transfer (International) || BTC|| Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:bitbox.png|20px|link=https://bitbox.mx]] [https://bitbox.mx BitBox] ([[BitBox|info]]) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&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) || &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [http://BTCTurk.com BTCTurk.com] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &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 (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 (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 (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) || 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) || &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;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || Based in Singapore&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SE]] || BTC &amp;lt;br/&amp;gt; SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || BTC&amp;lt;br/&amp;gt;SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || Based in Sweden&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) || 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) || &lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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)  || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at 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) || &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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([http://www.paysafecard.com PaySafe Card])&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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || 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;
| [https://www.bitcointoyou.com BitcoinToYou] || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || Language: Portuguese (português), customer can buy in cash ou bank deposit at HSBC, SANTANDER, ITAÚ, CAIXA, BRADESCO and BANCO DO BRASIL.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&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 || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || Cash Deposit or SEPA Transfer Only (International) || Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] ([[BIPS|info]]) || CAD (Cash deposits in Canada&amp;lt;br /&amp;gt;Any Currency (Wire Transfer - Any Country)&amp;lt;br /&amp;gt;USD || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;DK-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/BitcoinInternetPaymentSystem BIPS GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://bips.me/connect/BitcoinInternetPaymentSystemAPI.pdf REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) || AUD (Cash deposits) ||  Fast transaction processing, market rates with low commissions and no fees.  &lt;br /&gt;
Contact BUYbulk@bitXoin.com for special rates on BUY BTC transactions over $10,000 and SELLbulk@bitXoin.com for SELL BTC transactions over BTC50 &lt;br /&gt;
https://bitXoin.com/&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitbrothersllc.com BitBrothers LLC] || Bank Transfer/Cash/Moneygram || If you are looking for an extremelly simple and anonymous way to purchase bitcoins, this is the best place to do it. We are so sure you will be a repeat customer that we are willing to provide discounts for first time buyers. Best Customer service in the industry.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=237164.0 Bitcoin-Brokers &amp;lt;br /&amp;gt;(USA)] || Cash deposit || At major banks like Bank of America, Chase, Wells Fargo, PNC, Citibank. No ID, No registration. Immediate fundings.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoini.com Bitcoini.com &amp;lt;br /&amp;gt;(Bulgaria, Romania)] || BGN (Bank deposit, Cash, EasyPay, Post, Econt)&amp;lt;br /&amp;gt;RON (Bank deposit)&amp;lt;br /&amp;gt;USD (Western Union, MoneyGram) || Fast and secure way to buy/sell bitcoins. Live support&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitcoinbymobile.com BitcoinByMobile.com] || Mobile Phone (Premium SMS)|| Buy bitcoins instantly using just your mobile phone. No registration or personal financial information needed. Available in: Austria, France, Germany, Luxembourg, Netherlands, Portugal, Spain, and United Kingdom&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.btc-dealer.com BTC-Dealer] || Credit Card through Liqpay || No signup required. Instant deposit to any bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.cryptxchange.com ACryptxchange] || USD (Cash Deposit)&amp;lt;br /&amp;gt;USD (Wire Transfer)&amp;lt;br /&amp;gt;CAD (Cash Deposit)&amp;lt;br /&amp;gt;CAD (Wire Transfer)&amp;lt;br /&amp;gt;You may make cash deposits at any Chase Bank Internationally (ARS, GBP, EUR, AUD, BRL, CLP, COP, EGP, KYD, SAR, CNY, AED, JPY, INR || A multinational US based cryptographic currency exchange. No login or account creation required. No identity verification required. Exquisite customer service. Average transaction time under two hours depending on the time of the day. One of the most anonymous and reliable exchanges on the net. We use SSL &amp;amp; AES-256 military grade encryption for all communication&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.alfacashier.com ALFAcashier] || QIWI RUB&amp;lt;Br/&amp;gt;Yandex Money RUB&amp;lt;br/&amp;gt;Litecoin&amp;lt;br/&amp;gt;PerfectMoney&amp;lt;br/&amp;gt;Visa  || Instant exchanger. Supports major payment systems and visa funding is also available.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.getbitcoin.com.au Bitcoin (Australia)] || AUD (Bank Deposit)  || Bitcoin (Australia) / [https://www.getbitcoin.com.au www.getbitcoin.com.au] offers rapid transfer at low rates.&lt;br /&gt;
|-&lt;br /&gt;
| [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]) || Moneypak (USD) &amp;lt;======&amp;gt; BTC &amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt; Moneypak (USD) &amp;lt;br /&amp;gt; ReLoadit, etc. (USD) &amp;lt;====&amp;gt; BTC&amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt;  ReLoadit, etc. (USD) || Pays a bonus over market for your BTC &amp;lt;br /&amp;gt; Charges a fee over market for your Moneypak, etc. &amp;lt;br /&amp;gt; Only accepts codes from original purchaser &amp;lt;br /&amp;gt; Attempts to have regular customers processed within 24 hrs &amp;lt;br /&amp;gt; Available for discussion via TorChat&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || 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://bittylicious.com Bittylicious] ([[Bittylicious|info]]) || GBP || Near instant transactions via UK Bank Transfer (Faster Payments only). No sign up required but can buy more if registered.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || 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;
| [https://www.bitcointrader.com.au Bitcointrader] ([[Bitcointrader|info]]) || AUD (Cash deposit) || Lowest fee in Australia! Only 5%. Buy and sell bitcoins quickly and easily! Cash deposit at any Westpac Bank and National Australia Bank branch in Australia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || 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]] || 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]] || 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]] || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coin-Daddy]] || Buy bitcoins with PayPal || No verification needed. Customer just needs to pay with PayPal, leave the Wallet address and then he receives his coins. Sells Bitcoins, Litecoins and PPCoins.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || 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]] || &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;
| [[Spend Bitcoins]] || 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]]) || 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]] || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&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]] || CZK || Person-to-person, various methods.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.BitcoinZAP.com BitcoinZAP] || SEPA bank transfer - EUR &amp;lt;br&amp;gt; International bank transfer - EUR, USD &amp;lt;br&amp;gt; Western Union &amp;lt;br&amp;gt; MoneyGram &amp;lt;br&amp;gt; Cash (in the mail) - EUR, USD, CAD, GBP, HKD, JPY, PLN, AUD, CHF, CZK, DKK, HUF, MOP, SEK, NOK || Bitcoins usually delivered in less than 24 hours after payment is received&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || Person-to-person, various methods || 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]] || 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]]) || 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;
| [https://www.dagensia.eu Dagensia] ([[Dagensia|info]]) || &lt;br /&gt;
* SEPA Bank Transfer (EUR)&lt;br /&gt;
* Reloadable Debit Card (EUR, USD)&lt;br /&gt;
* Sofort Banking (EUR)&lt;br /&gt;
* Direct Banking (EUR)&lt;br /&gt;
* Payza (official Exchanger)&lt;br /&gt;
|| Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Payza. Sell and buy your Bitcoins through Wire, or SEPA EUR transfer, [[UKash]], Direct Banking, Debit Cards. &#039;&#039;&#039;Fully licensed exchanger&#039;&#039;&#039;, supervised by Czech National Bank&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || 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;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]] || Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || Digital Currency &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]] || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Cash, Webmoney || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Person-to-person, various methods ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Person-to-person via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/cash-deposit/ Cash deposit]&amp;lt;br&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/okpay/ OKPay]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/paypal/ PayPal]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/dwolla/ Dwolla]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/sepa-eu-bank-transfer/ SEPA Bank transfer] || Find your local bitcoin dealer, or purchase safely online using escrow! With dynamic pricing with equations.&amp;lt;br/&amp;gt;eWallet&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Affiliate program]&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/api-docs/ API]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Use the Dutch iDEAL payment system to receive Bitcoins within minutes. Prices are based on near real-time exchange prices (select the best out of multiple exchanges).&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || 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 || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || 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]] || 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 (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] || EUR (ATM/Multibanco) &amp;lt;br&amp;gt; EUR (bank transfer) &amp;lt;br&amp;gt; EUR (money order) &amp;lt;br&amp;gt; EUR (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;
| [[Mang Sweeney]] || 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]] || 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]]) || 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://bitonic.nl Bitonic.nl] || EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || 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] || 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]] || 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 (via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitplaats.nl Bitplaats.nl] || EUR (iDEAL) || Buy bitcoins instantly, pay with iDEAL. Buy bitcoin from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://artabit.com artaBit.com] ([[artaBit|info]]) || IDR || Buy bitcoins in Indonesia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitsofgold.co.il BitsOfGold.co.il] ([[Bits_of_Gold|info]]) || ILS || Buy bitcoins from Israel.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.rugatu.com rugatu.com] || EUR || Buy bitcoins with Neteller.&lt;br /&gt;
|-&lt;br /&gt;
|  [http://wmeng.exchanger.ru WMeng.Exchanger.ru] || Buy bitcoins with:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Vietnamese Dongs&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;br /&amp;gt;Sell bitcoins for:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles || The exchange service of WebMoney Transfer system. WMT has a special units named WMX to operate BTC, which can be exchanged and/or withdrawn&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
Liquidity providers for transactions of size ($10,000 or larger).&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.bitbrothersllc.com BitBrothers LLC] || Direct purchases up to $10,000 || USD (Bank Deposit at a Chase bank OR cash orders including cashiers checks and money orders) || BTC || Best customer service in the industry and quickest transaction speeds.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 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;
| [http://www.indx.ru/?lang=en-US INDX] || Stock market, where BTC are also traded || - || - || Trader`s account can be withdrawn with BTC or with USD via WebMoney.&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 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;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &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;
* [[: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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40995</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40995"/>
		<updated>2013-09-12T03:09:15Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Market Exchanges */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for &#039;&#039;&#039;buying bitcoins&#039;&#039;&#039;. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
&lt;br /&gt;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market.   If a service quotes a price then it is not operating a [http://bitcoincharts.com/markets market] but instead is a broker that buys and/or sells coins.  Those exchanges are found in the list of [[Buying bitcoins#Fixed_Rate_Exchanges_.26_Others|fixed-rate exchanges]].&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 || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || BTC&amp;lt;br/&amp;gt;Cash Deposit &amp;lt;br/&amp;gt; SEPA Transfer Only (International) || BTC|| Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:bitbox.png|20px|link=https://bitbox.mx]] [https://bitbox.mx BitBox] ([[BitBox|info]]) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&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) || &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [http://BTCTurk.com BTCTurk.com] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &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 (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 (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 (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) || 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) || &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;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || Based in Singapore&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SE]] || BTC &amp;lt;br/&amp;gt; SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || BTC&amp;lt;br/&amp;gt;SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || Based in Sweden&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) || 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) || &lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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)  || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at 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) || &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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([http://www.paysafecard.com PaySafe Card])&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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || 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;
| [https://www.bitcointoyou.com BitcoinToYou] || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || Language: Portuguese (português), customer can buy in cash ou bank deposit at HSBC, SANTANDER, ITAÚ, CAIXA, BRADESCO and BANCO DO BRASIL.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&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 || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || Cash Deposit or SEPA Transfer Only (International) || Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] ([[BIPS|info]]) || CAD (Cash deposits in Canada&amp;lt;br /&amp;gt;Any Currency (Wire Transfer - Any Country)&amp;lt;br /&amp;gt;USD || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;DK-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/BitcoinInternetPaymentSystem BIPS GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://bips.me/connect/BitcoinInternetPaymentSystemAPI.pdf REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) || AUD (Cash deposits) ||  Fast transaction processing, market rates with low commissions and no fees.  &lt;br /&gt;
Contact BUYbulk@bitXoin.com for special rates on BUY BTC transactions over $10,000 and SELLbulk@bitXoin.com for SELL BTC transactions over BTC50 &lt;br /&gt;
https://bitXoin.com/&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitbrothersllc.com BitBrothers LLC] || Bank Transfer/Cash/Moneygram || If you are looking for an extremelly simple and anonymous way to purchase bitcoins, this is the best place to do it. We are so sure you will be a repeat customer that we are willing to provide discounts for first time buyers. Best Customer service in the industry.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=237164.0 Bitcoin-Brokers &amp;lt;br /&amp;gt;(USA)] || Cash deposit || At major banks like Bank of America, Chase, Wells Fargo, PNC, Citibank. No ID, No registration. Immediate fundings.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoini.com Bitcoini.com &amp;lt;br /&amp;gt;(Bulgaria, Romania)] || BGN (Bank deposit, Cash, EasyPay, Post, Econt)&amp;lt;br /&amp;gt;RON (Bank deposit)&amp;lt;br /&amp;gt;USD (Western Union, MoneyGram) || Fast and secure way to buy/sell bitcoins. Live support&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitcoinbymobile.com BitcoinByMobile.com] || Mobile Phone (Premium SMS)|| Buy bitcoins instantly using just your mobile phone. No registration or personal financial information needed. Available in: Austria, France, Germany, Luxembourg, Netherlands, Portugal, Spain, and United Kingdom&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.btc-dealer.com BTC-Dealer] || Credit Card through Liqpay || No signup required. Instant deposit to any bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.cryptxchange.com ACryptxchange] || USD (Cash Deposit)&amp;lt;br /&amp;gt;USD (Wire Transfer)&amp;lt;br /&amp;gt;CAD (Cash Deposit)&amp;lt;br /&amp;gt;CAD (Wire Transfer)&amp;lt;br /&amp;gt;You may make cash deposits at any Chase Bank Internationally (ARS, GBP, EUR, AUD, BRL, CLP, COP, EGP, KYD, SAR, CNY, AED, JPY, INR || A multinational US based cryptographic currency exchange. No login or account creation required. No identity verification required. Exquisite customer service. Average transaction time under two hours depending on the time of the day. One of the most anonymous and reliable exchanges on the net. We use SSL &amp;amp; AES-256 military grade encryption for all communication&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.alfacashier.com ALFAcashier] || QIWI RUB&amp;lt;Br/&amp;gt;Yandex Money RUB&amp;lt;br/&amp;gt;Litecoin&amp;lt;br/&amp;gt;PerfectMoney&amp;lt;br/&amp;gt;Visa  || Instant exchanger. Supports major payment systems and visa funding is also available.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.getbitcoin.com.au Bitcoin (Australia)] || AUD (Bank Deposit)  || Bitcoin (Australia) / [https://www.getbitcoin.com.au www.getbitcoin.com.au] offers rapid transfer at low rates.&lt;br /&gt;
|-&lt;br /&gt;
| [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]) || Moneypak (USD) &amp;lt;======&amp;gt; BTC &amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt; Moneypak (USD) &amp;lt;br /&amp;gt; ReLoadit, etc. (USD) &amp;lt;====&amp;gt; BTC&amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt;  ReLoadit, etc. (USD) || Pays a bonus over market for your BTC &amp;lt;br /&amp;gt; Charges a fee over market for your Moneypak, etc. &amp;lt;br /&amp;gt; Only accepts codes from original purchaser &amp;lt;br /&amp;gt; Attempts to have regular customers processed within 24 hrs &amp;lt;br /&amp;gt; Available for discussion via TorChat&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || 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://bittylicious.com Bittylicious] ([[Bittylicious|info]]) || GBP || Near instant transactions via UK Bank Transfer (Faster Payments only). No sign up required but can buy more if registered.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || 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;
| [https://www.bitcointrader.com.au Bitcointrader] ([[Bitcointrader|info]]) || AUD (Cash deposit) || Lowest fee in Australia! Only 5%. Buy and sell bitcoins quickly and easily! Cash deposit at any Westpac Bank and National Australia Bank branch in Australia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || 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]] || 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]] || 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]] || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coin-Daddy]] || Buy bitcoins with PayPal || No verification needed. Customer just needs to pay with PayPal, leave the Wallet address and then he receives his coins. Sells Bitcoins, Litecoins and PPCoins.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || 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]] || &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;
| [[Spend Bitcoins]] || 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]]) || 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]] || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&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]] || CZK || Person-to-person, various methods.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.BitcoinZAP.com BitcoinZAP] || SEPA bank transfer - EUR &amp;lt;br&amp;gt; International bank transfer - EUR, USD &amp;lt;br&amp;gt; Western Union &amp;lt;br&amp;gt; MoneyGram &amp;lt;br&amp;gt; Cash (in the mail) - EUR, USD, CAD, GBP, HKD, JPY, PLN, AUD, CHF, CZK, DKK, HUF, MOP, SEK, NOK || Bitcoins usually delivered in less than 24 hours after payment is received&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || Person-to-person, various methods || 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]] || 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]]) || 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;
| [https://www.dagensia.eu Dagensia] ([[Dagensia|info]]) || &lt;br /&gt;
* SEPA Bank Transfer (EUR)&lt;br /&gt;
* Reloadable Debit Card (EUR, USD)&lt;br /&gt;
* Sofort Banking (EUR)&lt;br /&gt;
* Direct Banking (EUR)&lt;br /&gt;
* Payza (official Exchanger)&lt;br /&gt;
|| Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Payza. Sell and buy your Bitcoins through Wire, or SEPA EUR transfer, [[UKash]], Direct Banking, Debit Cards. &#039;&#039;&#039;Fully licensed exchanger&#039;&#039;&#039;, supervised by Czech National Bank&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || 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;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]] || Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || Digital Currency &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]] || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Cash, Webmoney || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Person-to-person, various methods ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Person-to-person via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/cash-deposit/ Cash deposit]&amp;lt;br&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/okpay/ OKPay]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/paypal/ PayPal]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/dwolla/ Dwolla]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/sepa-eu-bank-transfer/ SEPA Bank transfer] || Find your local bitcoin dealer, or purchase safely online using escrow! With dynamic pricing with equations.&amp;lt;br/&amp;gt;eWallet&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Affiliate program]&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/api-docs/ API]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Use the Dutch iDEAL payment system to receive Bitcoins within minutes. Prices are based on near real-time exchange prices (select the best out of multiple exchanges).&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || 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 || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || 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]] || 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 (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] || EUR (ATM/Multibanco) &amp;lt;br&amp;gt; EUR (bank transfer) &amp;lt;br&amp;gt; EUR (money order) &amp;lt;br&amp;gt; EUR (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;
| [[Mang Sweeney]] || 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]] || 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]]) || 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://bitonic.nl Bitonic.nl] || EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || 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] || 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]] || 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 (via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitplaats.nl Bitplaats.nl] || EUR (iDEAL) || Buy bitcoins instantly, pay with iDEAL. Buy bitcoin from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://artabit.com artaBit.com] ([[artaBit|info]]) || IDR || Buy bitcoins in Indonesia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitsofgold.co.il BitsOfGold.co.il] ([[Bits_of_Gold|info]]) || ILS || Buy bitcoins from Israel.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.rugatu.com rugatu.com] || EUR || Buy bitcoins with Neteller.&lt;br /&gt;
|-&lt;br /&gt;
|  [http://wmeng.exchanger.ru WMeng.Exchanger.ru] || Buy bitcoins with:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Vietnamese Dongs&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;br /&amp;gt;Sell bitcoins for:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles || The exchange service of WebMoney Transfer system. WMT has a special units named WMX to operate BTC, which can be exchanged and/or withdrawn&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
Liquidity providers for transactions of size ($10,000 or larger).&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.bitbrothersllc.com BitBrothers LLC] || Direct purchases up to $10,000 || USD (Bank Deposit at a Chase bank OR cash orders including cashiers checks and money orders) || BTC || Best customer service in the industry and quickest transaction speeds.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 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;
| [http://www.indx.ru/?lang=en-US INDX] || Stock market, where BTC are also traded || - || - || Trader`s account can be withdrawn with BTC or with USD via WebMoney.&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 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;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &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;
* [[: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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40984</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40984"/>
		<updated>2013-09-11T18:30:10Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (International) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40983</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40983"/>
		<updated>2013-09-11T18:29:52Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40979</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40979"/>
		<updated>2013-09-11T14:08:50Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Intro */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]] or [[BitBrothersLLC]] . For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* https://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40953</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40953"/>
		<updated>2013-09-11T00:06:56Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (International) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40952</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40952"/>
		<updated>2013-09-11T00:06:42Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40941</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40941"/>
		<updated>2013-09-10T16:13:56Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (International) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40940</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40940"/>
		<updated>2013-09-10T16:13:18Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40932</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40932"/>
		<updated>2013-09-10T01:22:52Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (International) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40931</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40931"/>
		<updated>2013-09-10T01:22:35Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40930</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40930"/>
		<updated>2013-09-10T01:20:34Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Fixed Rate Exchanges &amp;amp; Others */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for &#039;&#039;&#039;buying bitcoins&#039;&#039;&#039;. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
&lt;br /&gt;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market.   If a service quotes a price then it is not operating a [http://bitcoincharts.com/markets market] but instead is a broker that buys and/or sells coins.  Those exchanges are found in the list of [[Buying bitcoins#Fixed_Rate_Exchanges_.26_Others|fixed-rate exchanges]].&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 || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:bitbox.png|20px|link=https://bitbox.mx]] [https://bitbox.mx BitBox] ([[BitBox|info]]) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&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) || &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [http://BTCTurk.com BTCTurk.com] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &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 (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 (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 (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) || 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) || &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;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || Based in Singapore&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SE]] || BTC &amp;lt;br/&amp;gt; SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || BTC&amp;lt;br/&amp;gt;SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || Based in Sweden&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) || 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) || &lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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)  || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at 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) || &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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([http://www.paysafecard.com PaySafe Card])&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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || 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;
| [https://www.bitcointoyou.com BitcoinToYou] || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || Language: Portuguese (português), customer can buy in cash ou bank deposit at HSBC, SANTANDER, ITAÚ, CAIXA, BRADESCO and BANCO DO BRASIL.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&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 || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || Cash Deposit or SEPA Transfer Only (International) || Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] ([[BIPS|info]]) || CAD (Cash deposits in Canada&amp;lt;br /&amp;gt;Any Currency (Wire Transfer - Any Country)&amp;lt;br /&amp;gt;USD || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;DK-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/BitcoinInternetPaymentSystem BIPS GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://bips.me/connect/BitcoinInternetPaymentSystemAPI.pdf REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitbrothersllc.com BitBrothers LLC] || Bank Transfer/Cash || If you are looking for an extremelly simple and anonymous way to purchase bitcoins, this is the best place to do it. We are so sure you will be a repeat customer that we are willing to provide discounts for first time buyers. Best Customer service in the industry.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=237164.0 Bitcoin-Brokers &amp;lt;br /&amp;gt;(USA)] || Cash deposit || At major banks like Bank of America, Chase, Wells Fargo, PNC, Citibank. No ID, No registration. Immediate fundings.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoini.com Bitcoini.com &amp;lt;br /&amp;gt;(Bulgaria, Romania)] || BGN (Bank deposit, Cash, EasyPay, Post, Econt)&amp;lt;br /&amp;gt;RON (Bank deposit)&amp;lt;br /&amp;gt;USD (Western Union, MoneyGram) || Fast and secure way to buy/sell bitcoins. Live support&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitcoinbymobile.com BitcoinByMobile.com] || Mobile Phone (Premium SMS)|| Buy bitcoins instantly using just your mobile phone. No registration or personal financial information needed. Available in: Austria, France, Germany, Luxembourg, Netherlands, Portugal, Spain, and United Kingdom&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.btc-dealer.com BTC-Dealer] || Credit Card through Liqpay || No signup required. Instant deposit to any bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.cryptxchange.com ACryptxchange] || USD (Cash Deposit)&amp;lt;br /&amp;gt;USD (Wire Transfer)&amp;lt;br /&amp;gt;CAD (Cash Deposit)&amp;lt;br /&amp;gt;CAD (Wire Transfer)&amp;lt;br /&amp;gt;You may make cash deposits at any Chase Bank Internationally (ARS, GBP, EUR, AUD, BRL, CLP, COP, EGP, KYD, SAR, CNY, AED, JPY, INR || A multinational US based cryptographic currency exchange. No login or account creation required. No identity verification required. Exquisite customer service. Average transaction time under two hours depending on the time of the day. One of the most anonymous and reliable exchanges on the net. We use SSL &amp;amp; AES-256 military grade encryption for all communication&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.alfacashier.com ALFAcashier] || QIWI RUB&amp;lt;Br/&amp;gt;Yandex Money RUB&amp;lt;br/&amp;gt;Litecoin&amp;lt;br/&amp;gt;PerfectMoney&amp;lt;br/&amp;gt;Visa  || Instant exchanger. Supports major payment systems and visa funding is also available.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.getbitcoin.com.au Bitcoin (Australia)] || AUD (Bank Deposit)  || Bitcoin (Australia) / [https://www.getbitcoin.com.au www.getbitcoin.com.au] offers rapid transfer at low rates.&lt;br /&gt;
|-&lt;br /&gt;
| [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]) || Moneypak (USD) &amp;lt;======&amp;gt; BTC &amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt; Moneypak (USD) &amp;lt;br /&amp;gt; ReLoadit, etc. (USD) &amp;lt;====&amp;gt; BTC&amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt;  ReLoadit, etc. (USD) || Pays a bonus over market for your BTC &amp;lt;br /&amp;gt; Charges a fee over market for your Moneypak, etc. &amp;lt;br /&amp;gt; Only accepts codes from original purchaser &amp;lt;br /&amp;gt; Attempts to have regular customers processed within 24 hrs &amp;lt;br /&amp;gt; Available for discussion via TorChat&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || 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://bittylicious.com Bittylicious] ([[Bittylicious|info]]) || GBP || Near instant transactions via UK Bank Transfer (Faster Payments only). No sign up required but can buy more if registered.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || 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;
| [https://www.bitcointrader.com.au Bitcointrader] ([[Bitcointrader|info]]) || AUD (Cash deposit) || Lowest fee in Australia! Only 5%. Buy and sell bitcoins quickly and easily! Cash deposit at any Westpac Bank and National Australia Bank branch in Australia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || 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]] || 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]] || 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]] || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coin-Daddy]] || Buy bitcoins with PayPal || No verification needed. Customer just needs to pay with PayPal, leave the Wallet address and then he receives his coins. Sells Bitcoins, Litecoins and PPCoins.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || 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]] || &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;
| [[Spend Bitcoins]] || 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]]) || 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]] || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&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]] || CZK || Person-to-person, various methods.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.BitcoinZAP.com BitcoinZAP] || SEPA bank transfer - EUR &amp;lt;br&amp;gt; International bank transfer - EUR, USD &amp;lt;br&amp;gt; Western Union &amp;lt;br&amp;gt; MoneyGram &amp;lt;br&amp;gt; Cash (in the mail) - EUR, USD, CAD, GBP, HKD, JPY, PLN, AUD, CHF, CZK, DKK, HUF, MOP, SEK, NOK || Bitcoins usually delivered in less than 24 hours after payment is received&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || Person-to-person, various methods || 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]] || 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]]) || 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;
| [https://www.dagensia.eu Dagensia] ([[Dagensia|info]]) || &lt;br /&gt;
* SEPA Bank Transfer (EUR)&lt;br /&gt;
* Reloadable Debit Card (EUR, USD)&lt;br /&gt;
* Sofort Banking (EUR)&lt;br /&gt;
* Direct Banking (EUR)&lt;br /&gt;
* Payza (official Exchanger)&lt;br /&gt;
|| Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Payza. Sell and buy your Bitcoins through Wire, or SEPA EUR transfer, [[UKash]], Direct Banking, Debit Cards. &#039;&#039;&#039;Fully licensed exchanger&#039;&#039;&#039;, supervised by Czech National Bank&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || 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;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]] || Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || Digital Currency &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]] || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Cash, Webmoney || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Person-to-person, various methods ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Person-to-person via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/cash-deposit/ Cash deposit]&amp;lt;br&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/okpay/ OKPay]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/paypal/ PayPal]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/dwolla/ Dwolla]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/sepa-eu-bank-transfer/ SEPA Bank transfer] || Find your local bitcoin dealer, or purchase safely online using escrow! With dynamic pricing with equations.&amp;lt;br/&amp;gt;eWallet&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Affiliate program]&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/api-docs/ API]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Use the Dutch iDEAL payment system to receive Bitcoins within minutes. Prices are based on near real-time exchange prices (select the best out of multiple exchanges).&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || 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 || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || 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]] || 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 (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] || EUR (ATM/Multibanco) &amp;lt;br&amp;gt; EUR (bank transfer) &amp;lt;br&amp;gt; EUR (money order) &amp;lt;br&amp;gt; EUR (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;
| [[Mang Sweeney]] || 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]] || 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]]) || 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://bitonic.nl Bitonic.nl] || EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || 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] || 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]] || 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 (via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitplaats.nl Bitplaats.nl] || EUR (iDEAL) || Buy bitcoins instantly, pay with iDEAL. Buy bitcoin from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://artabit.com artaBit.com] ([[artaBit|info]]) || IDR || Buy bitcoins in Indonesia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitsofgold.co.il BitsOfGold.co.il] ([[Bits_of_Gold|info]]) || ILS || Buy bitcoins from Israel.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.rugatu.com rugatu.com] || EUR || Buy bitcoins with Neteller.&lt;br /&gt;
|-&lt;br /&gt;
|  [http://wmeng.exchanger.ru WMeng.Exchanger.ru] || Buy bitcoins with:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Vietnamese Dongs&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;br /&amp;gt;Sell bitcoins for:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles || The exchange service of WebMoney Transfer system. WMT has a special units named WMX to operate BTC, which can be exchanged and/or withdrawn&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
Liquidity providers for transactions of size ($10,000 or larger).&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://www.bitbrothersllc.com BitBrothers LLC] || Direct purchases up to $10,000 || USD (Bank Deposit at a Chase bank OR cash orders including cashiers checks and money orders) || BTC || Best customer service in the industry and quickest transaction speeds.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 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;
| [http://www.indx.ru/?lang=en-US INDX] || Stock market, where BTC are also traded || - || - || Trader`s account can be withdrawn with BTC or with USD via WebMoney.&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 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;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &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;
* [[: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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40929</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=40929"/>
		<updated>2013-09-10T01:20:10Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Fixed Rate Exchanges &amp;amp; Others */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are various methods available for &#039;&#039;&#039;buying bitcoins&#039;&#039;&#039;. See [[Buying Bitcoins (the noob version)|here for a Newb-friendly version]] of this page.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
==Market Exchanges==&lt;br /&gt;
&lt;br /&gt;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market.   If a service quotes a price then it is not operating a [http://bitcoincharts.com/markets market] but instead is a broker that buys and/or sells coins.  Those exchanges are found in the list of [[Buying bitcoins#Fixed_Rate_Exchanges_.26_Others|fixed-rate exchanges]].&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 || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:bitbox.png|20px|link=https://bitbox.mx]] [https://bitbox.mx BitBox] ([[BitBox|info]]) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&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) || &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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [http://BTCTurk.com BTCTurk.com] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &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 (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 (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 (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) || 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) || &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;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || Based in Singapore&lt;br /&gt;
|-&lt;br /&gt;
|  [[FYB-SE]] || BTC &amp;lt;br/&amp;gt; SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || BTC&amp;lt;br/&amp;gt;SEK(Internet Bank Transfer)&amp;lt;br/&amp;gt; || Based in Sweden&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) || 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) || &lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || BTC&amp;lt;br/&amp;gt;&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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)  || &lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at 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) || &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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortuberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([http://www.paysafecard.com PaySafe Card])&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 ([http://www.neteller.com NETELLER])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || 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;
| [https://www.bitcointoyou.com BitcoinToYou] || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;BRL&amp;lt;br /&amp;gt;USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt; || Language: Portuguese (português), customer can buy in cash ou bank deposit at HSBC, SANTANDER, ITAÚ, CAIXA, BRADESCO and BANCO DO BRASIL.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&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 || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] ([[BIPS|info]]) || CAD (Cash deposits in Canada&amp;lt;br /&amp;gt;Any Currency (Wire Transfer - Any Country)&amp;lt;br /&amp;gt;USD || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;DK-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/BitcoinInternetPaymentSystem BIPS GitHub]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://bips.me/connect/BitcoinInternetPaymentSystemAPI.pdf REST API]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] || Cash Deposit or SEPA Transfer Only (International) || Connects buyers to sellers around the globe via bank cash deposit or SEPA transfer. No registration required. Instant deposit to any bitcoin address after cash deposit or SEPA transfer receipt received.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitbrothersllc.com BitBrothers LLC] || Bank Transfer/Cash || If you are looking for an extremelly simple and anonymous way to purchase bitcoins, this is the best place to do it. We are so sure you will be a repeat customer that we are willing to provide discounts for first time buyers. Best Customer service in the industry.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=237164.0 Bitcoin-Brokers &amp;lt;br /&amp;gt;(USA)] || Cash deposit || At major banks like Bank of America, Chase, Wells Fargo, PNC, Citibank. No ID, No registration. Immediate fundings.&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoini.com Bitcoini.com &amp;lt;br /&amp;gt;(Bulgaria, Romania)] || BGN (Bank deposit, Cash, EasyPay, Post, Econt)&amp;lt;br /&amp;gt;RON (Bank deposit)&amp;lt;br /&amp;gt;USD (Western Union, MoneyGram) || Fast and secure way to buy/sell bitcoins. Live support&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitcoinbymobile.com BitcoinByMobile.com] || Mobile Phone (Premium SMS)|| Buy bitcoins instantly using just your mobile phone. No registration or personal financial information needed. Available in: Austria, France, Germany, Luxembourg, Netherlands, Portugal, Spain, and United Kingdom&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.btc-dealer.com BTC-Dealer] || Credit Card through Liqpay || No signup required. Instant deposit to any bitcoin address.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.cryptxchange.com ACryptxchange] || USD (Cash Deposit)&amp;lt;br /&amp;gt;USD (Wire Transfer)&amp;lt;br /&amp;gt;CAD (Cash Deposit)&amp;lt;br /&amp;gt;CAD (Wire Transfer)&amp;lt;br /&amp;gt;You may make cash deposits at any Chase Bank Internationally (ARS, GBP, EUR, AUD, BRL, CLP, COP, EGP, KYD, SAR, CNY, AED, JPY, INR || A multinational US based cryptographic currency exchange. No login or account creation required. No identity verification required. Exquisite customer service. Average transaction time under two hours depending on the time of the day. One of the most anonymous and reliable exchanges on the net. We use SSL &amp;amp; AES-256 military grade encryption for all communication&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.alfacashier.com ALFAcashier] || QIWI RUB&amp;lt;Br/&amp;gt;Yandex Money RUB&amp;lt;br/&amp;gt;Litecoin&amp;lt;br/&amp;gt;PerfectMoney&amp;lt;br/&amp;gt;Visa  || Instant exchanger. Supports major payment systems and visa funding is also available.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.getbitcoin.com.au Bitcoin (Australia)] || AUD (Bank Deposit)  || Bitcoin (Australia) / [https://www.getbitcoin.com.au www.getbitcoin.com.au] offers rapid transfer at low rates.&lt;br /&gt;
|-&lt;br /&gt;
| [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]) || Moneypak (USD) &amp;lt;======&amp;gt; BTC &amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt; Moneypak (USD) &amp;lt;br /&amp;gt; ReLoadit, etc. (USD) &amp;lt;====&amp;gt; BTC&amp;lt;br /&amp;gt; BTC &amp;lt;======&amp;gt;  ReLoadit, etc. (USD) || Pays a bonus over market for your BTC &amp;lt;br /&amp;gt; Charges a fee over market for your Moneypak, etc. &amp;lt;br /&amp;gt; Only accepts codes from original purchaser &amp;lt;br /&amp;gt; Attempts to have regular customers processed within 24 hrs &amp;lt;br /&amp;gt; Available for discussion via TorChat&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitbargain.co.uk BitBargain] ([[BitBargain|info]]) || 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://bittylicious.com Bittylicious] ([[Bittylicious|info]]) || GBP || Near instant transactions via UK Bank Transfer (Faster Payments only). No sign up required but can buy more if registered.&lt;br /&gt;
|-&lt;br /&gt;
| [http://btc.pt BTC.pt] || 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;
| [https://www.bitcointrader.com.au Bitcointrader] ([[Bitcointrader|info]]) || AUD (Cash deposit) || Lowest fee in Australia! Only 5%. Buy and sell bitcoins quickly and easily! Cash deposit at any Westpac Bank and National Australia Bank branch in Australia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://blockchain.info/wallet/deposit-methods Blockchain] ([[BlockChain.info|info]]) || 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]] || 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]] || 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]] || Buy bitcoins using a bank transfer (U.S.). || Instant verification available for new accounts.&lt;br /&gt;
|-&lt;br /&gt;
| [[Coin-Daddy]] || Buy bitcoins with PayPal || No verification needed. Customer just needs to pay with PayPal, leave the Wallet address and then he receives his coins. Sells Bitcoins, Litecoins and PPCoins.&lt;br /&gt;
|-&lt;br /&gt;
| [http://BitcoinIsrael.co.il BitcoinIsrael.co.il]   || 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]] || &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;
| [[Spend Bitcoins]] || 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]]) || 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]] || EUR (bank wire)&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&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]] || CZK || Person-to-person, various methods.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.BitcoinZAP.com BitcoinZAP] || SEPA bank transfer - EUR &amp;lt;br&amp;gt; International bank transfer - EUR, USD &amp;lt;br&amp;gt; Western Union &amp;lt;br&amp;gt; MoneyGram &amp;lt;br&amp;gt; Cash (in the mail) - EUR, USD, CAD, GBP, HKD, JPY, PLN, AUD, CHF, CZK, DKK, HUF, MOP, SEK, NOK || Bitcoins usually delivered in less than 24 hours after payment is received&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCX.se]] || SEK || Transfer to and banks in Sweden.&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC China]] || || Converted to CNY for trading. &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.co]] || COP (Colombian Peso) || Varies (person to person)&lt;br /&gt;
|- &lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || Person-to-person, various methods || 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]] || 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]]) || 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;
| [https://www.dagensia.eu Dagensia] ([[Dagensia|info]]) || &lt;br /&gt;
* SEPA Bank Transfer (EUR)&lt;br /&gt;
* Reloadable Debit Card (EUR, USD)&lt;br /&gt;
* Sofort Banking (EUR)&lt;br /&gt;
* Direct Banking (EUR)&lt;br /&gt;
* Payza (official Exchanger)&lt;br /&gt;
|| Exchange Bitcoins &#039;&#039;&#039;instantly&#039;&#039;&#039; to and from Payza. Sell and buy your Bitcoins through Wire, or SEPA EUR transfer, [[UKash]], Direct Banking, Debit Cards. &#039;&#039;&#039;Fully licensed exchanger&#039;&#039;&#039;, supervised by Czech National Bank&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || 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;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]] || Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || Digital Currency &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]] || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Cash, Webmoney || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcoin.in.th Bitcoin Thailand] || THB: Cash/Bank Deposit || Same day service.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Person-to-person, various methods ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Person-to-person via PayPal, [[Skrill]]/Moneybookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[btcnow]] || USD (OKPay, Dwolla) ||  bitcoins transferred instantly&lt;br /&gt;
|-&lt;br /&gt;
| [http://localbitcoins.com LocalBitcoins.com] || Varies (person to person)&amp;lt;br/&amp;gt;Physical cash locally&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/cash-deposit/ Cash deposit]&amp;lt;br&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/okpay/ OKPay]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/paypal/ PayPal]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/dwolla/ Dwolla]&amp;lt;br/&amp;gt;[https://localbitcoins.com/buy-bitcoins-online/sepa-eu-bank-transfer/ SEPA Bank transfer] || Find your local bitcoin dealer, or purchase safely online using escrow! With dynamic pricing with equations.&amp;lt;br/&amp;gt;eWallet&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Affiliate program]&amp;lt;br/&amp;gt;&lt;br /&gt;
[https://localbitcoins.com/api-docs/ API]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.happycoins.nl HappyCoins] || EUR (iDEAL and SEPA bank transfer) || Buy and sell Bitcoins. Use the Dutch iDEAL payment system to receive Bitcoins within minutes. Prices are based on near real-time exchange prices (select the best out of multiple exchanges).&lt;br /&gt;
|-&lt;br /&gt;
| [[ECurrencyZone]] || 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 || Bank transfer considered at all locations with prior approval.&lt;br /&gt;
|-&lt;br /&gt;
| [[BitCoinVend]] || 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]] || 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 (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] || EUR (ATM/Multibanco) &amp;lt;br&amp;gt; EUR (bank transfer) &amp;lt;br&amp;gt; EUR (money order) &amp;lt;br&amp;gt; EUR (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;
| [[Mang Sweeney]] || 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]] || 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]]) || 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://bitonic.nl Bitonic.nl] || EUR (iDeal) || Buy bitcoins instantly from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.dragons.tl Dragon&#039;s Tale] ([[Dragon&#039;s Tale|info]]) || 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] || 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]] || 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 (via Exchange Partners) || Support of 19 world currencies, 15 languages.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitplaats.nl Bitplaats.nl] || EUR (iDEAL) || Buy bitcoins instantly, pay with iDEAL. Buy bitcoin from the Netherlands.&lt;br /&gt;
|-&lt;br /&gt;
| [http://artabit.com artaBit.com] ([[artaBit|info]]) || IDR || Buy bitcoins in Indonesia.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.bitsofgold.co.il BitsOfGold.co.il] ([[Bits_of_Gold|info]]) || ILS || Buy bitcoins from Israel.&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.rugatu.com rugatu.com] || EUR || Buy bitcoins with Neteller.&lt;br /&gt;
|-&lt;br /&gt;
|  [http://wmeng.exchanger.ru WMeng.Exchanger.ru] || Buy bitcoins with:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Vietnamese Dongs&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;br /&amp;gt;Sell bitcoins for:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;USD&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;EUR&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;RUB&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;UAH&amp;lt;/li&amp;gt;&amp;lt;/li&amp;gt;Belorussian Roubles || The exchange service of WebMoney Transfer system. WMT has a special units named WMX to operate BTC, which can be exchanged and/or withdrawn&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Direct / Bulk Buying==&lt;br /&gt;
&lt;br /&gt;
Liquidity providers for transactions of size ($10,000 or larger).&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://www.bitbrothersllc.com BitBrothers LLC] || Direct purchases up to $10,000 || USD (Bank Deposit at a Chase bank OR cash orders including cashiers checks and money orders) || BTC || Best customer service in the industry and quickest transaction speeds.&lt;br /&gt;
|-&lt;br /&gt;
| [http://bitcointalk.org/index.php?topic=87094.0 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;
| [http://www.indx.ru/?lang=en-US INDX] || Stock market, where BTC are also traded || - || - || Trader`s account can be withdrawn with BTC or with USD via WebMoney.&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 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;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &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;
* [[: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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40919</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40919"/>
		<updated>2013-09-09T15:08:30Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (International) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40918</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40918"/>
		<updated>2013-09-09T15:07:46Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins by mailing in cash, or depositing cash at a local bank. Low rates, fast customer service, and no account verification needed. This is the ONLY anonymous way to buy bitcoins, don&#039;t be fooled by other services. We don&#039;t report your transactions to any government, as soon as your transaction goes through all of your information is instantly wiped from our servers.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=40917</id>
		<title>Selling bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=40917"/>
		<updated>2013-09-09T13:59:07Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* 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;
Market exchanges are those in which buy orders are matched with sell orders, so the price offered depends on the market. If a service quotes a price then it is not operating a market but instead is a broker that buys and/or sells coins. Those exchanges are found in the list of fixed-rate exchanges.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Adding Funds || Withdrawing Funds || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitBox]] || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || BTC&amp;lt;br/&amp;gt;USD (Wire Transfer - US) || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;US-based&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Two-factor Authentication&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[http://inbitbox.github.io/rest/ BitBox REST API]&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;[https://github.com/inbitbox BitBox GitHub]&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[MtGox]] ||BTC&amp;lt;br/&amp;gt;USD (International bank wire)&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) || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;AUD (Bank wire) || 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) || 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) ||&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 (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)&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 (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) || Language: English, Russian.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || BTC&amp;lt;br/&amp;gt;CAD (cash deposit at BMO Bank of Montreal)&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) || &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) || &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;
|  [[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 ([[Ripple]])&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 (Ripple)&amp;lt;br /&amp;gt;CHF || EUR and CHF deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTCTurk]] || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;TL (Bank transfer)&amp;lt;br /&amp;gt; || &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt; The first Bitcoin exchange to allow trades in Turkish Lira.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Available in Turkish language. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;  &lt;br /&gt;
|-&lt;br /&gt;
|  [[FBTC Exchange]] || BTC &amp;lt;br/&amp;gt; USD(Domestic Wire Transfer)&amp;lt;br/&amp;gt;EUR (Bank transfer) || BTC&amp;lt;br/&amp;gt;USD&amp;lt;br /&amp;gt;EUR || Based in the Netherlands   &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; || &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;
|  [[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) || &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) || &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) || || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Vircurex]] || BTC || BTC || Trading in many other P2P/Crypto currencies possible&lt;br /&gt;
|-&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;
&lt;br /&gt;
* [[ALFAcashier]] Instant exchange between Bitcoin, Litecoin, PerfectMoney, QIWI, Yandex Money&lt;br /&gt;
* [[Bahtcoin]] Trade BTC for Thai Baht, cash, 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.&lt;br /&gt;
* [[BTCHKEX]] Trade your BTCs for HKD.&lt;br /&gt;
* [https://bips.me BIPS] ([[BIPS|info]]) Withdraw funds as Danish Domestic Transfer, or ACH / Direct Deposit in any current, and Wire Transfer to Any Country.  DK-based&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 Nordic]] Sell bitcoins with withdrawal to PayPal or bank transfer.&lt;br /&gt;
* [[Bitcoini.com]] Trade bitcoins in Bulgaria and Romania for local currencies, USD worldwide with Western Union, MoneyGram&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, 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;
* [[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;
* [https://www.bitquick.co BitQuick.co][https://en.bitcoin.it/wiki/BitQuick.co (info)] Instant exchange to receive cash deposit or SEPA transfer to the seller&#039;s bank account for Bitcoin at any price set by seller.&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;
* [[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;
* [https://www.cryptxchange.com Cryptxchange] Sell bitcoins for USD or CAD Funds transfered VIA bank tranfer&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 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 payout and transparent prices based on near real-time exchange prices (select from multiple exchanges).&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 [[Pecunix]], [[AlertPay]], [[Skrill]]/Moneybookers, [[PayPal]], and more.&lt;br /&gt;
* [[LocalBitcoins]] Exchanges bitcoins for csah, bank wirte transfers, [[OKPay]], [[AlertPay]], [[Skrill]]/Moneybookers, [[PayPal]], [[Dwolla]] and more.&lt;br /&gt;
* [[Nanaimo Gold]] Redeem bitcoins 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;
* [http://jzn5w5pac26sqef4.onion.sh/ WeBuyBitcoins] Sell Bitcoins for ACH, PayPal, Cash In Mail, WU/MG.&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;
* [[Dagensia]] &#039;&#039;&#039;Fully licensed EU company&#039;&#039;&#039; exchanging Bitcoins, Bank Wire, SEPA EUR, Debit Cards. USD, EUR, GBP, CAD, CHF, SEK, AUD, CZK&lt;br /&gt;
* [http://artabit.com artaBit.com] ([[artaBit|info]]), Sell bitcoins in Indonesia for IDR (rupiah).&lt;br /&gt;
* [https://www.bitsofgold.co.il Bits Of Gold] ([[Bits of Gold|info]]), Sell bitcoins in Israel for ILS.&lt;br /&gt;
* [https://moneypaktrader.com MoneypakTrader.com] ([[MoneypakTrader.com|info]]), sell bitcoins for [[MoneyPak]].&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>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40916</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40916"/>
		<updated>2013-09-09T13:54:44Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (International) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins by mailing in cash, or depositing cash at a local bank. Low rates, fast customer service, and no account verification needed. This is the ONLY anonymous way to buy bitcoins, don&#039;t be fooled by other services. We don&#039;t report your transactions to any government, as soon as your transaction goes through all of your information is instantly wiped from our servers.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins by mailing in cash, or depositing cash at a local bank. Low rates, fast customer service, and no account verification needed. This is the ONLY anonymous way to buy bitcoins, don&#039;t be fooled by other services. We don&#039;t report your transactions to any government, as soon as your transaction goes through all of your information is instantly wiped from our servers.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40915</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40915"/>
		<updated>2013-09-09T13:53:01Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Cash (US) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins by mailing in cash, or depositing cash at a local bank. Low rates, fast customer service, and no account verification needed. This is the ONLY anonymous way to buy bitcoins, don&#039;t be fooled by other services. We don&#039;t report your transactions to any government, as soon as your transaction goes through all of your information is instantly wiped from our servers.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins by mailing in cash, or depositing cash at a local bank. Low rates, fast customer service, and no account verification needed. This is the ONLY anonymous way to buy bitcoins, don&#039;t be fooled by other services. We don&#039;t report your transactions to any government, as soon as your transaction goes through all of your information is instantly wiped from our servers.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40765</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=40765"/>
		<updated>2013-09-05T20:49:43Z</updated>

		<summary type="html">&lt;p&gt;Champbronc2: /* Via Bank Transfer (EU) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
== Intro ==&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t reliably buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 4 reasons for that:&lt;br /&gt;
* The TOS of PayPal actually prohibit buying digital currency with it&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins by mailing in cash, or depositing cash at a local bank. Low rates, fast customer service, and no account verification needed. This is the ONLY anonymous way to buy bitcoins, don&#039;t be fooled by other services. We don&#039;t report your transactions to any government, as soon as your transaction goes through all of your information is instantly wiped from our servers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins by mailing in cash, or depositing cash at a local bank. Low rates, fast customer service, and no account verification needed. This is the ONLY anonymous way to buy bitcoins, don&#039;t be fooled by other services. We don&#039;t report your transactions to any government, as soon as your transaction goes through all of your information is instantly wiped from our servers.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://coinbase.com Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account.  You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
&amp;lt;br /&amp;gt;[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, or cashiers checks to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[http://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &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;
== Links ==&lt;br /&gt;
* http://www.bitbrothersllc.com&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Champbronc2</name></author>
	</entry>
</feed>