<?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=Automtgox</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=Automtgox"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Automtgox"/>
	<updated>2026-04-26T17:53:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=27707</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=27707"/>
		<updated>2012-06-11T03:18:48Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;Sorry, AutoMtGox is no longer servicing the public.&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to US Dollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;Note - This service is not operated by [[MtGox]] and has no affiliation with the exchange.&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How It Works==&lt;br /&gt;
AutoMtGox works in connection with your accounts on [[MtGox]], [[Dwolla]] (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work converting your bitcoins to cash (based on rules you define) then transfers US Dollars to your banking service (based on your thresholds).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Risk==&lt;br /&gt;
* The website doesn&#039;t host a wallet or keep any bitcoins so if service goes down or AutoMtGox disappears, your money is still safe on a trusted service.&lt;br /&gt;
* This is no savings account so your assets aren&#039;t built up or compounded. Balances are sold-off almost immediately and transferred to your banking establishment as quickly as possible, thus making your exposure to loss limited.&lt;br /&gt;
* If one of your accounts gets hacked or you discover anything &amp;quot;hinky&amp;quot;, you can revoke authority or change addresses between services before damages can become a major concern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&lt;br /&gt;
* [http://www.youtube.com/watch?v=b0kkeXXWhd0 How To Convert Bitcoins to US Dollars Automatically] How To Videos 3 Parts&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=MtGox/API&amp;diff=17114</id>
		<title>MtGox/API</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=MtGox/API&amp;diff=17114"/>
		<updated>2011-09-22T00:24:11Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: /* Authentication */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[MtGox]] API provides various methods to access different informations from the market, place orders, and more.&lt;br /&gt;
&lt;br /&gt;
Two APIs are available at this point: the HTTP api (available by posting to mtgox.com/code/*) and the websocket API.&lt;br /&gt;
&lt;br /&gt;
==Number Formats==&lt;br /&gt;
&lt;br /&gt;
In the &amp;quot;old API&amp;quot;, currency- and amount-values (price, volume,...) were given as &#039;&#039;&#039;float&#039;&#039;&#039;. These values are likely being deprecated and replaced by fields of the same name with &amp;quot;_int&amp;quot; as suffix. These are &#039;&#039;&#039;fixed-decimal&#039;&#039;&#039;, so you have to move the decimal point yourself (divide). The exponent differs based on the kind of the value.&lt;br /&gt;
&lt;br /&gt;
In order to convert the &#039;&#039;&#039;int&#039;&#039;&#039; to a &#039;&#039;&#039;decimal&#039;&#039;&#039; you can...&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! kind of field !! ...divide by !! ...multiply by&lt;br /&gt;
|-&lt;br /&gt;
| BTC (volume, amount) || 1E8 (10,000,000) || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| USD (price) || 1E5 (100,000) || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| JPY (price) || 1E3 (1,000) || 0.001&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Implementation advice: it&#039;s probably best to use &#039;&#039;&#039;int&#039;&#039;&#039; or &#039;&#039;&#039;Decimal&#039;&#039;&#039; (if your language/db offers such a type) in your clients. Using &#039;&#039;&#039;float&#039;&#039;&#039; will likely lead to nasty rounding problems.&lt;br /&gt;
&lt;br /&gt;
== HTTP API ==&lt;br /&gt;
This API is available in &amp;lt;nowiki&amp;gt;https://mtgox.com/api/*&amp;lt;/nowiki&amp;gt;, and provides various informations. It also supports making an order, a withdraw, a deposit, etc.  There is also a [https://rubygems.org/gems/mtgox Ruby gem] and [[Finance::MtGox|Perl module]] for interacting with the HTTP API.&lt;br /&gt;
&lt;br /&gt;
=== Authentication ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authentication information may be compromised. See [https://en.bitcoin.it/wiki/Talk:MtGox/API Discussion]&#039;&#039;&#039; Delete when verified...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Authentication is performed by signing each request using HMAC-SHA512. The request must contain an extra value &amp;quot;nonce&amp;quot; which must be an always incrementing numeric value. In addition to the &amp;quot;nonce&amp;quot; value, your POST data must also include your username and password values, named &amp;quot;name&amp;quot; and &amp;quot;pass&amp;quot; respectively.  A reference implementation is provided here:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
function mtgox_query($path, array $req = array()) {&lt;br /&gt;
	// API settings&lt;br /&gt;
	$key = &#039;&#039;;&lt;br /&gt;
	$secret = &#039;&#039;;&lt;br /&gt;
&lt;br /&gt;
	// generate a nonce as microtime, with as-string handling to avoid problems with 32bits systems&lt;br /&gt;
	$mt = explode(&#039; &#039;, microtime());&lt;br /&gt;
	$req[&#039;nonce&#039;] = $mt[1].substr($mt[0], 2, 6);&lt;br /&gt;
&lt;br /&gt;
	// generate the POST data string&lt;br /&gt;
	$post_data = http_build_query($req, &#039;&#039;, &#039;&amp;amp;&#039;);&lt;br /&gt;
&lt;br /&gt;
	// generate the extra headers&lt;br /&gt;
	$headers = array(&lt;br /&gt;
		&#039;Rest-Key: &#039;.$key,&lt;br /&gt;
		&#039;Rest-Sign: &#039;.base64_encode(hash_hmac(&#039;sha512&#039;, $post_data, base64_decode($secret), true)),&lt;br /&gt;
	);&lt;br /&gt;
&lt;br /&gt;
	// our curl handle (initialize if required)&lt;br /&gt;
	static $ch = null;&lt;br /&gt;
	if (is_null($ch)) {&lt;br /&gt;
		$ch = curl_init();&lt;br /&gt;
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
		curl_setopt($ch, CURLOPT_USERAGENT, &#039;Mozilla/4.0 (compatible; MtGox PHP client; &#039;.php_uname(&#039;s&#039;).&#039;; PHP/&#039;.phpversion().&#039;)&#039;);&lt;br /&gt;
	}&lt;br /&gt;
	curl_setopt($ch, CURLOPT_URL, &#039;https://mtgox.com/api/&#039;.$path);&lt;br /&gt;
	curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);&lt;br /&gt;
	curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
&lt;br /&gt;
	// run the query&lt;br /&gt;
	$res = curl_exec($ch);&lt;br /&gt;
	if ($res === false) throw new Exception(&#039;Could not get reply: &#039;.curl_error($ch));&lt;br /&gt;
	$dec = json_decode($res, true);&lt;br /&gt;
	if (!$dec) throw new Exception(&#039;Invalid data received, please make sure connection is working and requested API exists&#039;);&lt;br /&gt;
	return $dec;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// example 1: get infos about the account, plus the list of rights we have access to&lt;br /&gt;
var_dump(mtgox_query(&#039;0/info.php&#039;));&lt;br /&gt;
&lt;br /&gt;
// old api (get funds)&lt;br /&gt;
var_dump(mtgox_query(&#039;0/getFunds.php&#039;));&lt;br /&gt;
&lt;br /&gt;
// trade example&lt;br /&gt;
// var_dump(mtgox_query(&#039;0/buyBTC.php&#039;, array(&#039;amount&#039; =&amp;gt; 1, &#039;price&#039; =&amp;gt; 15)));&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Cache ===&lt;br /&gt;
&lt;br /&gt;
All of the API methods below have cached results, ticker, depth . . . have a 10 seconds cache .&lt;br /&gt;
No need to poll more often, you wont have more results, you could just be blocked by the prolexic anti ddos features.&lt;br /&gt;
&lt;br /&gt;
=== Methods API version 0===&lt;br /&gt;
&lt;br /&gt;
==== 0/data/getTrades.php ====&lt;br /&gt;
This allows retrieving all trades which happened in the last 24 hours. The returned data is cached and may not reflect latest activity.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
* since: Passing a tid in &amp;quot;since&amp;quot; allows retrieving all trades since that trade. The passed id is may not exist. Ie. to get all trades from the very beginning one would just call https://mtgox.com/code/data/getTrades.php?since=0 . since returns only 100 trades, and you can call the method again by passing the latest trade you have imported in since.&lt;br /&gt;
&lt;br /&gt;
* data is returned in standard json format like :&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
[&lt;br /&gt;
{&amp;quot;date&amp;quot;:1279408157,&lt;br /&gt;
&amp;quot;price&amp;quot;:&amp;quot;0.04951&amp;quot;,&lt;br /&gt;
&amp;quot;amount&amp;quot;:&amp;quot;20&amp;quot;,&lt;br /&gt;
&amp;quot;price_int&amp;quot;:&amp;quot;4951&amp;quot;,&lt;br /&gt;
&amp;quot;amount_int&amp;quot;:&amp;quot;2000000000&amp;quot;,&lt;br /&gt;
&amp;quot;tid&amp;quot;:&amp;quot;1&amp;quot;,&lt;br /&gt;
&amp;quot;price_currency&amp;quot;:&amp;quot;USD&amp;quot;,&lt;br /&gt;
&amp;quot;item&amp;quot;:&amp;quot;BTC&amp;quot;,&lt;br /&gt;
&amp;quot;trade_type&amp;quot;:&amp;quot;&amp;quot;&lt;br /&gt;
&amp;quot;primary&amp;quot;:&amp;quot;Y&amp;quot;&lt;br /&gt;
},&lt;br /&gt;
{&amp;quot;date&amp;quot;:1279424586,&amp;quot;price&amp;quot;:&amp;quot;0.05941&amp;quot;,&amp;quot;amount&amp;quot;:&amp;quot;50.01&amp;quot;,&amp;quot;price_int&amp;quot;:&amp;quot;5941&amp;quot;,&amp;quot;amount_int&amp;quot;:&amp;quot;5001000000&amp;quot;,&amp;quot;tid&amp;quot;:&amp;quot;2&amp;quot;,&amp;quot;price_currency&amp;quot;:&amp;quot;USD&amp;quot;,&amp;quot;item&amp;quot;:&amp;quot;BTC&amp;quot;,&amp;quot;trade_type&amp;quot;:&amp;quot;&amp;quot;}]&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 0/getDepth.php ====&lt;br /&gt;
Get the current Market depth&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/data/getDepth.php?Currency=PLN&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/data/getDepth.php?Currency=AUD&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/data/getDepth.php?Currency=USD&lt;br /&gt;
&lt;br /&gt;
==== 0/getFunds.php ====&lt;br /&gt;
Get your current balance&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/getFunds.php&lt;br /&gt;
&lt;br /&gt;
==== 0/buyBTC.php ====&lt;br /&gt;
Place an order to Buy BTC&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/buyBTC.php&lt;br /&gt;
&lt;br /&gt;
POST data: amount=#&amp;amp;price=#&amp;amp;Currency=PLN&lt;br /&gt;
&lt;br /&gt;
returns a list of your open orders&lt;br /&gt;
&lt;br /&gt;
you can omit the price to do a market order&lt;br /&gt;
&lt;br /&gt;
==== 0/sellBTC.php ====&lt;br /&gt;
Place an order to Sell BTC&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/sellBTC.php&lt;br /&gt;
&lt;br /&gt;
POST data: &amp;amp;amount=#&amp;amp;price=#&amp;amp;Currency=PLN &lt;br /&gt;
&lt;br /&gt;
returns a list of your open orders&lt;br /&gt;
&lt;br /&gt;
you can omit the price to do a market order&lt;br /&gt;
&lt;br /&gt;
==== 0/getOrders.php ====&lt;br /&gt;
Fetch a list of your open Orders&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/getOrders.php&lt;br /&gt;
&lt;br /&gt;
oid: Order ID&lt;br /&gt;
&lt;br /&gt;
type: 1 for sell order or 2 for buy order&lt;br /&gt;
&lt;br /&gt;
status: 1 for active, 2 for not enough funds&lt;br /&gt;
&lt;br /&gt;
==== 0/cancelOrder.php ====&lt;br /&gt;
Cancel an order&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/cancelOrder.php&lt;br /&gt;
&lt;br /&gt;
POST data: oid=#&amp;amp;type=#&lt;br /&gt;
&lt;br /&gt;
oid: Order ID&lt;br /&gt;
&lt;br /&gt;
type: 1 for sell order or 2 for buy order&lt;br /&gt;
&lt;br /&gt;
==== 0/redeemCode.php ====&lt;br /&gt;
Used to redeem a mtgox coupon code&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/redeemCode.php&lt;br /&gt;
&lt;br /&gt;
* call with a post parameter &amp;quot;code&amp;quot; containing the code to redeem&lt;br /&gt;
&lt;br /&gt;
* it will return an array with amount (float amount value of code), currency (3 letters, BTC or USD), reference (the transaction id), and status&lt;br /&gt;
&lt;br /&gt;
==== 0/withdraw.php ====&lt;br /&gt;
withdraw / Send BTC&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/withdraw.php&lt;br /&gt;
&lt;br /&gt;
POST data: group1=BTC&amp;amp;btca=bitcoin_address_to_send_to&amp;amp;amount=#&lt;br /&gt;
&lt;br /&gt;
* pass btca parameter to withdraw to a btc adress&lt;br /&gt;
&lt;br /&gt;
* pass group1 for a coupon : BTC2CODE or USD2CODE&lt;br /&gt;
&lt;br /&gt;
* pass group1=DWUSD for a dwolla withdraw&lt;br /&gt;
&lt;br /&gt;
* return code and status if successful&lt;br /&gt;
&lt;br /&gt;
==== 0/btcAddress.php ====&lt;br /&gt;
get a bitcoin deposit adress for your account &lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/btcAddress.php&lt;br /&gt;
&lt;br /&gt;
* returns a bitcoin deposit address&lt;br /&gt;
&lt;br /&gt;
==== 0/history_[CUR].csv ====&lt;br /&gt;
&lt;br /&gt;
Allows downloading your activity history for a given currency (BTC or USD for now).&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/history_BTC.php&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/history_USD.php&lt;br /&gt;
&lt;br /&gt;
==== 0/info.php ====&lt;br /&gt;
returns info about your account, funds, fees, API privileges . . . &lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/0/info.php&lt;br /&gt;
&lt;br /&gt;
=== API version 0 examples ===&lt;br /&gt;
&lt;br /&gt;
==== all api shell type CLI ====&lt;br /&gt;
&lt;br /&gt;
python : http://www.goxsh.info/&lt;br /&gt;
&lt;br /&gt;
perl : http://pastebin.com/vEpgw5nW&lt;br /&gt;
&lt;br /&gt;
==== other ====&lt;br /&gt;
&lt;br /&gt;
https : http://stackoverflow.com/questions/7046370/https-request-with-boost-asio-and-openssl&lt;br /&gt;
&lt;br /&gt;
https://github.com/sje397/mtgox-plasmoid&lt;br /&gt;
&lt;br /&gt;
==== gather data ====&lt;br /&gt;
&lt;br /&gt;
https://github.com/Lexiks/MyBitBoard&lt;br /&gt;
&lt;br /&gt;
==== gettrade ====&lt;br /&gt;
&lt;br /&gt;
python : https://bitcointalk.org/index.php?topic=39402.0&lt;br /&gt;
&lt;br /&gt;
perl : http://pastebin.com/raw.php?i=pmhMXZJu&lt;br /&gt;
&lt;br /&gt;
==== ticker ====&lt;br /&gt;
&lt;br /&gt;
http://pastebin.com/pd0ZR4WY&lt;br /&gt;
&lt;br /&gt;
=== Methods API version 1===&lt;br /&gt;
&lt;br /&gt;
==== Multi currency depth ====&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/1/BTCPLN/public/depth?raw&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/1/BTCAUD/public/depth?raw&lt;br /&gt;
&lt;br /&gt;
==== Multi currency trades ====&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/1/BTCPLN/public/trades?raw&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/1/BTCAUD/public/trades?raw&lt;br /&gt;
&lt;br /&gt;
to get only the trades since a given trade id, you can add the parameter since=&amp;lt;trade_id&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/1/BTCUSD/public/trades?since=0&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/1/BTCEUR/public/trades?since=1316312781670700&lt;br /&gt;
&lt;br /&gt;
For multi currency,also returns the primary value,&amp;quot;Y&amp;quot; or &amp;quot;N&amp;quot;, the primary currency is always the buyers currency&lt;br /&gt;
&lt;br /&gt;
A trade can appear in more than one currency, to ignore duplicates, use only the trades having primary =Y&lt;br /&gt;
&lt;br /&gt;
example of returned data : &lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;date&amp;quot;:1316312781,&lt;br /&gt;
&amp;quot;price&amp;quot;:&amp;quot;3.5599&amp;quot;,&lt;br /&gt;
&amp;quot;amount&amp;quot;:&amp;quot;3.6900096&amp;quot;,&lt;br /&gt;
&amp;quot;price_int&amp;quot;:&amp;quot;355990&amp;quot;,&lt;br /&gt;
&amp;quot;amount_int&amp;quot;:&amp;quot;369000960&amp;quot;,&lt;br /&gt;
&amp;quot;tid&amp;quot;:&amp;quot;1316312781670700&amp;quot;,&lt;br /&gt;
&amp;quot;price_currency&amp;quot;:&amp;quot;EUR&amp;quot;,&lt;br /&gt;
&amp;quot;item&amp;quot;:&amp;quot;BTC&amp;quot;,&lt;br /&gt;
&amp;quot;trade_type&amp;quot;:&amp;quot;bid&amp;quot;,&lt;br /&gt;
&amp;quot;primary&amp;quot;:&amp;quot;Y&amp;quot;,&lt;br /&gt;
&amp;quot;properties&amp;quot;:&amp;quot;limit,mixed_currency&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Cancelled Trades ====&lt;br /&gt;
&lt;br /&gt;
https://mtgox.com/api/1/BTCUSD/public/cancelledtrades&lt;br /&gt;
&lt;br /&gt;
returns a list of all the cancelled trades this last month, list of trade ids in json format .&lt;br /&gt;
&lt;br /&gt;
== Websocket API ==&lt;br /&gt;
ported on 7/10/2011 from http://forum.bitcoin.org/index.php?topic=5855.0&lt;br /&gt;
&lt;br /&gt;
===Connecting===&lt;br /&gt;
&lt;br /&gt;
You can connect via: ws://websocket.mtgox.com/mtgox&lt;br /&gt;
&lt;br /&gt;
The WebSocket protocol version used is that described in [http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-00 draft-ietf-hybi-thewebsocketprotocol-00] (aka draft-00).&lt;br /&gt;
&lt;br /&gt;
===Channels===&lt;br /&gt;
&lt;br /&gt;
The websocket will subscribe you to some channels automatically:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Channel ID !! Description&lt;br /&gt;
|-&lt;br /&gt;
| dbf1dee9-4f2e-4a08-8cb7-748919a71b21 || trades (each time a trade happens, you get something here)&lt;br /&gt;
|-&lt;br /&gt;
| d5f06780-30a8-4a48-a2f8-7ed181b4a13f || the mtgox ticker (lots of updates, with often the same data)&lt;br /&gt;
|-&lt;br /&gt;
| 24e67e0d-1cad-4cc0-9e7a-f8523ef460fe || depth information in realtime (price + amount + type... type=1=Ask, type=2=Bid)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Additionally each user has a &amp;quot;own&amp;quot; channel which streams informations about orders (new order, deleted order, etc) and trades only the user&#039;s trades).&lt;br /&gt;
&lt;br /&gt;
Each message is a JSON-encoded object, with at least &amp;quot;op&amp;quot; element. The &amp;quot;op&amp;quot; element contains the operation to be done (for outgoing messages), or the type of message (for incoming messages).&lt;br /&gt;
&lt;br /&gt;
===Possible outgoing commands===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;unsubscribe&#039;&#039;&#039; Stop receiving messages from a channel (parameter &amp;quot;channel&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
===Incoming Data===&lt;br /&gt;
&lt;br /&gt;
====Ticker====&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;channel&amp;quot;:&amp;quot;d5f06780-30a8-4a48-a2f8-7ed181b4a13f&amp;quot;,&lt;br /&gt;
  &amp;quot;op&amp;quot;:&amp;quot;private&amp;quot;,&lt;br /&gt;
  &amp;quot;origin&amp;quot;:&amp;quot;broadcast&amp;quot;,&lt;br /&gt;
  &amp;quot;private&amp;quot;:&amp;quot;ticker&amp;quot;,&lt;br /&gt;
  &amp;quot;ticker&amp;quot;:{&lt;br /&gt;
    &amp;quot;buy&amp;quot;:0.9515,&lt;br /&gt;
    &amp;quot;high&amp;quot;:1,&lt;br /&gt;
    &amp;quot;low&amp;quot;:0.91,&lt;br /&gt;
    &amp;quot;sell&amp;quot;:0.9697,&lt;br /&gt;
    &amp;quot;vol&amp;quot;:34349&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ticker&#039;&#039;&#039; contains the following:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Value&lt;br /&gt;
|-&lt;br /&gt;
| buy || highest bid as float&lt;br /&gt;
|-&lt;br /&gt;
| sell || lowest ask as float&lt;br /&gt;
|-&lt;br /&gt;
| high || maximum rate since last close as float&lt;br /&gt;
|-&lt;br /&gt;
| low || minimum rate since last close as float&lt;br /&gt;
|-&lt;br /&gt;
| vol || traded volume since last close&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Trade====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
  &amp;quot;channel&amp;quot;:&amp;quot;dbf1dee9-4f2e-4a08-8cb7-748919a71b21&amp;quot;,&lt;br /&gt;
  &amp;quot;op&amp;quot;:&amp;quot;private&amp;quot;,&lt;br /&gt;
  &amp;quot;origin&amp;quot;:&amp;quot;broadcast&amp;quot;,&lt;br /&gt;
  &amp;quot;private&amp;quot;:&amp;quot;trade&amp;quot;,&lt;br /&gt;
  &amp;quot;trade&amp;quot;:{&lt;br /&gt;
    &amp;quot;amount&amp;quot;:2.71,&lt;br /&gt;
    &amp;quot;amount_int&amp;quot;:&amp;quot;271000000&amp;quot;,&lt;br /&gt;
    &amp;quot;date&amp;quot;:1310279340,&lt;br /&gt;
    &amp;quot;item&amp;quot;:&amp;quot;BTC&amp;quot;,&lt;br /&gt;
    &amp;quot;price&amp;quot;:14.43,&lt;br /&gt;
    &amp;quot;price_currency&amp;quot;:&amp;quot;USD&amp;quot;,&lt;br /&gt;
    &amp;quot;price_int&amp;quot;:&amp;quot;1443000&amp;quot;,&lt;br /&gt;
    &amp;quot;tid&amp;quot;:&amp;quot;1310279340877902&amp;quot;,&lt;br /&gt;
    &amp;quot;trade_type&amp;quot;:&amp;quot;bid&amp;quot;,&lt;br /&gt;
    &amp;quot;type&amp;quot;:&amp;quot;trade&amp;quot;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;trade&#039;&#039;&#039; contains the following:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Value&lt;br /&gt;
|-&lt;br /&gt;
| amount || the traded amount in item (BTC), float, deprecated&lt;br /&gt;
|-&lt;br /&gt;
| amount_int || the traded amount * 1E8&lt;br /&gt;
|-&lt;br /&gt;
| date || unix timestamp of trade&lt;br /&gt;
|-&lt;br /&gt;
| item || What was this trade about&lt;br /&gt;
|-&lt;br /&gt;
| price || price per unit, float, deprecated&lt;br /&gt;
|-&lt;br /&gt;
| price_int || price in smallest unit as integer (5 decimals of USD, 3 in case of JPY)&lt;br /&gt;
|-&lt;br /&gt;
| price_currency || currency in which trade was completed&lt;br /&gt;
|-&lt;br /&gt;
| tid || Trade id (big integer, which is in fact trade timestamp in microseconds)&lt;br /&gt;
|-&lt;br /&gt;
| trade_type || Did this trade result from the execution of a bid or a ask?&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Depth====&lt;br /&gt;
&lt;br /&gt;
Changes to the market depth data are broadcast so an up-to-date market depth can be kept by clients.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
  &amp;quot;channel&amp;quot;:&amp;quot;24e67e0d-1cad-4cc0-9e7a-f8523ef460fe&amp;quot;,&lt;br /&gt;
  &amp;quot;depth&amp;quot;:{&lt;br /&gt;
    &amp;quot;currency&amp;quot;:&amp;quot;USD&amp;quot;,&lt;br /&gt;
    &amp;quot;item&amp;quot;:&amp;quot;BTC&amp;quot;,&lt;br /&gt;
    &amp;quot;price&amp;quot;:&amp;quot;14.43&amp;quot;,&lt;br /&gt;
    &amp;quot;price_int&amp;quot;:&amp;quot;1443000&amp;quot;,&lt;br /&gt;
    &amp;quot;type&amp;quot;:1,&lt;br /&gt;
    &amp;quot;type_str&amp;quot;:&amp;quot;ask&amp;quot;,&lt;br /&gt;
    &amp;quot;volume&amp;quot;:&amp;quot;-2.71&amp;quot;,&lt;br /&gt;
    &amp;quot;volume_int&amp;quot;:&amp;quot;-271000000&amp;quot;&lt;br /&gt;
  },&lt;br /&gt;
  &amp;quot;op&amp;quot;:&amp;quot;private&amp;quot;,&lt;br /&gt;
  &amp;quot;origin&amp;quot;:&amp;quot;broadcast&amp;quot;,&lt;br /&gt;
  &amp;quot;private&amp;quot;:&amp;quot;depth&amp;quot;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;depth&#039;&#039;&#039; contains the following:&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Value&lt;br /&gt;
|-&lt;br /&gt;
| currency || the currency affected&lt;br /&gt;
|-&lt;br /&gt;
| item || the item (BTC)&lt;br /&gt;
|-&lt;br /&gt;
| price || price as a float, deprecated&lt;br /&gt;
|-&lt;br /&gt;
| price_int || the price at which volume change happened (5 decimal for USD, 3 for JPY)&lt;br /&gt;
|-&lt;br /&gt;
| type || 1=ask, 2=bid. deprecated, use type_str&lt;br /&gt;
|-&lt;br /&gt;
| type_str || type of order at this depth, either &amp;quot;ask&amp;quot; or &amp;quot;bid&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| volume || the volume change as float, deprecated&lt;br /&gt;
|-&lt;br /&gt;
| volume_int || volume change * 1E8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== examples ===&lt;br /&gt;
&lt;br /&gt;
==== ticker ====&lt;br /&gt;
javascript, using hookio : &lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=KD5ljtNK72U&lt;br /&gt;
http://github.com/hookio&lt;br /&gt;
http://github.com/cronopio/hook.io-mtgox&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Mt._Gox/API&amp;diff=17113</id>
		<title>Talk:Mt. Gox/API</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Mt._Gox/API&amp;diff=17113"/>
		<updated>2011-09-22T00:18:15Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: Created page with &amp;quot;I believe some of the inexperienced api users may have unintentionally compromised the Authentication section and examples by removing the details regarding api key &amp;amp; secret a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I believe some of the inexperienced api users may have unintentionally compromised the Authentication section and examples by removing the details regarding api key &amp;amp; secret as recommended by MtGox at https://mtgox.com/support/tradeAPI. &lt;br /&gt;
The change now describes the need for user name and password. Though this old model still works in the new api model, it is not the recommended strategy because it gives applications information which would compromise the user&#039;s private account. The application SHOULD ONLY have access to the the api calls as granted by them by the user&#039;s specified api rights associated to the api key and secret.&lt;br /&gt;
&lt;br /&gt;
[[User:Automtgox|Automtgox]] 00:18, 22 September 2011 (GMT)&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15127</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15127"/>
		<updated>2011-08-17T09:34:22Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to US Dollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;Note - This service is not operated by [[MtGox]] and has no affiliation with the exchange.&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How It Works==&lt;br /&gt;
AutoMtGox works in connection with your accounts on [[MtGox]], [[Dwolla]] (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work converting your bitcoins to cash (based on rules you define) then transfers US Dollars to your banking service (based on your thresholds).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Risk==&lt;br /&gt;
* The website doesn&#039;t host a wallet or keep any bitcoins so if service goes down or AutoMtGox disappears, your money is still safe on a trusted service.&lt;br /&gt;
* This is no savings account so your assets aren&#039;t built up or compounded. Balances are sold-off almost immediately and transferred to your banking establishment as quickly as possible, thus making your exposure to loss limited.&lt;br /&gt;
* If one of your accounts gets hacked or you discover anything &amp;quot;hinky&amp;quot;, you can revoke authority or change addresses between services before damages can become a major concern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&lt;br /&gt;
* [http://www.youtube.com/watch?v=b0kkeXXWhd0 How To Convert Bitcoins to US Dollars Automatically] How To Videos 3 Parts&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User:Automtgox&amp;diff=15107</id>
		<title>User:Automtgox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User:Automtgox&amp;diff=15107"/>
		<updated>2011-08-17T02:44:08Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Michael D.&lt;br /&gt;
* Los Angeles area, Southern California, USA&lt;br /&gt;
* Programmer (C#, ASP.NET, apis: mtgox, dwolla, bitcoinrpc)&lt;br /&gt;
* Entrepreneur&lt;br /&gt;
&lt;br /&gt;
==My projects==&lt;br /&gt;
* [[AutoMtGox]] Send bitcoins to a single bitcoin address; automatically converts to US Dollars and sent to your bank.&lt;br /&gt;
&lt;br /&gt;
==Contact==&lt;br /&gt;
* email: info at automtgox.com&lt;br /&gt;
* aim: michaelinplaya&lt;br /&gt;
&lt;br /&gt;
Contributors Award participant: 19Q5GU3Mbuw1DheLDPnEmBjbUDU7BhPRwS&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
[[AutoMtGox]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Freelancers-Software Development]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User:Automtgox&amp;diff=15106</id>
		<title>User:Automtgox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User:Automtgox&amp;diff=15106"/>
		<updated>2011-08-17T02:06:42Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: Created page with &amp;quot;Michael D. * Los Angeles area, Southern California, USA * Programmer (C#, ASP.NET, apis: mtgox, dwolla, bitcoinrpc) * Entrepreneur  ==My projects== * AutoMtGox Send bitcoi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Michael D.&lt;br /&gt;
* Los Angeles area, Southern California, USA&lt;br /&gt;
* Programmer (C#, ASP.NET, apis: mtgox, dwolla, bitcoinrpc)&lt;br /&gt;
* Entrepreneur&lt;br /&gt;
&lt;br /&gt;
==My projects==&lt;br /&gt;
* [[AutoMtGox]] Send bitcoins to a single bitcoin address; automatically converts to US Dollars and sent to your bank.&lt;br /&gt;
&lt;br /&gt;
==Contact==&lt;br /&gt;
* email: info at automtgox.com&lt;br /&gt;
* aim: michaelinplaya&lt;br /&gt;
&lt;br /&gt;
Contributors Award participant: 19Q5GU3Mbuw1DheLDPnEmBjbUDU7BhPRwS&lt;br /&gt;
&lt;br /&gt;
[[Category:Freelancers-Software Development]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15103</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15103"/>
		<updated>2011-08-17T01:42:12Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to US Dollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;Note - This service is not operated by [[MtGox]] and has no affiliation with the exchange.&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How It Works==&lt;br /&gt;
AutoMtGox works in connection with your accounts on [[MtGox]], [[Dwolla]] (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work converting your bitcoins to cash (based on rules you define) then transfers US Dollars to your banking service (based on your thresholds).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&lt;br /&gt;
* [http://www.youtube.com/watch?v=b0kkeXXWhd0 How To Convert Bitcoins to US Dollars Automatically] How To Videos 3 Parts&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15102</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15102"/>
		<updated>2011-08-17T01:29:59Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to US Dollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;Note - This service is not operated by [[MtGox]] and has no affiliation with the exchange.&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How It Works==&lt;br /&gt;
AutoMtGox works in connection with your accounts on [[MtGox]], [[Dwolla]] (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work converting your bitcoins to cash (based on rules you define) then transfers US Dollars to your banking service (based on your thresholds).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Risks==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&lt;br /&gt;
* [http://www.youtube.com/watch?v=b0kkeXXWhd0 How To Convert Bitcoins to US Dollars Automatically] How To Videos 3 Parts&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:EWallets]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15047</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15047"/>
		<updated>2011-08-16T01:05:54Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to US Dollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How It Works==&lt;br /&gt;
AutoMtGox works in connection with your accounts on [[MtGox]], [[Dwolla]] (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work converting your bitcoins to cash (based on rules you define) then transfers US Dollars to your banking service (when amount reaches a threshold).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&lt;br /&gt;
* [http://www.youtube.com/watch?v=b0kkeXXWhd0 How To Convert Bitcoins to US Dollars Automatically] How To Videos 3 Parts&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[MtGox]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15046</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15046"/>
		<updated>2011-08-16T01:04:43Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to USDollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How It Works==&lt;br /&gt;
AutoMtGox works in connection with your accounts on [[MtGox]], [[Dwolla]] (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work converting your bitcoins to cash (based on rules you define) then transfers US Dollars to your banking service (when amount reaches a threshold).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&lt;br /&gt;
* [http://www.youtube.com/watch?v=b0kkeXXWhd0 How To Convert Bitcoins to US Dollars Automatically] How To Videos 3 Parts&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[MtGox]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15045</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15045"/>
		<updated>2011-08-16T01:02:48Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to USDollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How It Works==&lt;br /&gt;
AutoMtGox works in connection with your accounts on [[MtGox]], [[Dwolla]] (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work converting your bitcoins to cash (based on rules you define) then transfers US Dollars to your banking service (when amount reaches a threshold).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&lt;br /&gt;
* [http://www.youtube.com/watch?v=b0kkeXXWhd0 Video] How To&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:EWallets]]&lt;br /&gt;
[[MtGox]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=15043</id>
		<title>Selling bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=15043"/>
		<updated>2011-08-16T00:58:23Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Major Exchanges==&lt;br /&gt;
The best rates for selling medium to large amounts of bitcoins generally when withdrawing from an exchange using a cash method such as a bank transfer (ACH, EUR/SEPA).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Type || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] || Market || BTC&amp;lt;br /&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt; || BTC&amp;lt;br/&amp;gt;USD (Dwolla) || {{Table Value Yes}} || Atlanta - USA based, security certification from McAfee, provides advanced trading options with AON/FOK/Market, Short Selling coming soon, Trading API available; Dwolla only. &lt;br /&gt;
|-&lt;br /&gt;
|  [[TradeHill]] || Market || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br&amp;gt;USD (International bank wire)&amp;lt;br/&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]]&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;PEN (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Direct deposit / ACH)&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (Prepaid card via [[Paxum]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]])&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Britcoin]] || Market || BTC&amp;lt;br /&amp;gt;GBP (bank deposit) || BTC&amp;lt;br /&amp;gt;GBP (bank deposit) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Intersango]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA bank deposit) || BTC&amp;lt;br /&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Intersango.us]] || Market || BTC&amp;lt;br /&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (ACH)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;USD (Dwolla) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[ExchB]] || Market || BTC&amp;lt;br/&amp;gt;USD (Cash or check)&amp;lt;br /&amp;gt;USD (ING Person2Person)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (USPS Money Order by mail) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Cash or check deposits: Accepted at any Wells Fargo or Chase branch, or by mail.&lt;br /&gt;
|-&lt;br /&gt;
|  [[HelloBitcoin]] || Market || BTC&amp;lt;br/&amp;gt;USD (Cwolla)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (Check) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Offers margin trading and shorting.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin7]] || Market || BTC&amp;lt;br /&amp;gt;EUR (Bank transfer)&amp;lt;br /&amp;gt;USD (Domestic wire)&amp;lt;br /&amp;gt;USD (International wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;BGN (Bank transfer) || BTC&amp;lt;br/&amp;gt;EUR (Bank transfer)&amp;lt;br /&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;USD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;PLN (Bank transfer)&amp;lt;br /&amp;gt;SAR (Bank transfer)&amp;lt;br /&amp;gt;BGN (ePay)&amp;lt;br /&amp;gt;BGN (Bank transfer) || {{Table Value Yes}} || USD wire to Citibank.  EUR transfers to/from FiBank.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || Market || BTC&amp;lt;br/&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (online bill pay)&amp;lt;br /&amp;gt;CAD (cash at TDBank) || BTC&amp;lt;br/&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (direct deposit)&amp;lt;br /&amp;gt;CAD (Prepaid VISA) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP ) || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa) || BTC&amp;lt;br/&amp;gt;USD (Webmoney) || {{Table Value Yes}} || Language: Russian.  Interkassa can be funded from Webmoney and many other methods.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || Market || 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 [[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 ([[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars (highly liquid).&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|-&lt;br /&gt;
|  [[WM-Center]] || Exchanger || BTC&amp;lt;br/&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP || BTC&amp;lt;br /&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP&amp;lt;br /&amp;gt; PayPal USD/EUR, Moneybookers, Neteller || {{Table Value No}} || 24/7/365 support in english, spanish and russian!&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;
* [[AutoMtGox]] Convert your bitcoins to US Dollars automatically.&lt;br /&gt;
* [[Bitcoin Market]] Trade your BTCs for MoneyBookers, Liberty Reserve or Pecunix.&lt;br /&gt;
* [[BitMarket.eu]] Trade your BTCs for EUR (SEPA bank transfer), GBP, USD, PLN, AUD, CAD, ZAR, ILS, CHF, and RUB as OTC with BTC Escrow.&lt;br /&gt;
* [[Bitcoiny.cz]] Trade your BTCs for CZK.  No-escrow, direct person-to-person trading.&lt;br /&gt;
* [[Bit]] / BTC China - Market for exchanging bitcoins to and from CNY.&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;
* [[Lilion Transfer]] Exchanges bitcoins for Liberty Reserve, [[Pecunix]], [[AlertPay]], [[Moneybookers]],   [[PayPal]], and more.&lt;br /&gt;
* [[Nanaimo Gold]] Redeem bitcoins for Liberty Reserve (automated) or for money transfer, money order or direct deposit within Canada.&lt;br /&gt;
* [[Bitcoin Morpheus]] purchase reloadable debit cards with bitcoins&lt;br /&gt;
* [[Bitcoin Argentina]] Trades BTC for ARS. Cash and bank transfer. No exchange fees.&lt;br /&gt;
* [[Bahtcoin]] Trade BTC for Thai Baht, cash, LR, Webmoney, or Thai mobile and gaming prepaid cards.&lt;br /&gt;
* [[Bitcoin Brasil]] Cash exchange that redeems bitcoins for BRL, USD.&lt;br /&gt;
* [[Bitcoin.com.es]] Trade your BTCs for EUR (Bank transfer).&lt;br /&gt;
* [[BitPiggy]] Trade your BTCs for AUD (Bank transfer).&lt;br /&gt;
* [[GetBitcoin]] Trade your BTCs for USD (Cash, Check or Bank Wire).&lt;br /&gt;
* [[Bitcoin2Cash]] Redeems bitcoins with cash mailed to you&lt;br /&gt;
* [[Bitcoin 2 Credit Card]] purchase virtual VISA prepaid cards with bitcoins&lt;br /&gt;
* [[Bitcoin 4 Cash]] Redeems bitcoins with cash mailed to you&lt;br /&gt;
* [[Bitcoin Cashout]] purchase virtual prepaid cards with bitcoins&lt;br /&gt;
* [[btcbuy|BTC Buy]] Simple interface to trade your BTCs for Amazon, Buy.com, NewEgg, and Walmart gift cards&lt;br /&gt;
* [[bitcoin.local]] arranges for exchanging currencies in person with someone nearby&lt;br /&gt;
* [[Ubitex]] In-person exchange&lt;br /&gt;
* [[Bitcoil]] Exchange BTC for ILS with bank transfers in Israel&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;
* [[Comparison of exchanges]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15042</id>
		<title>AutoMtGox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=AutoMtGox&amp;diff=15042"/>
		<updated>2011-08-16T00:50:39Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;AutoMtGox&amp;#039;&amp;#039;&amp;#039; converts bitcoins received at a single wallet address automatically to USDollars and transfers to your bank.  AutoMtGox started as a personal project, then exp...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;AutoMtGox&#039;&#039;&#039; converts bitcoins received at a single wallet address automatically to USDollars and transfers to your bank.&lt;br /&gt;
&lt;br /&gt;
AutoMtGox started as a personal project, then expanded word-of-mouth as a private service to friends and friends-of-friends. On 8/14/11, it opened to the public. &lt;br /&gt;
&lt;br /&gt;
AutoMtGox works in connection with your accounts on MtGox, Dwolla (or other banking service), Once you are setup on these services, all you do is send bitcoins to your MtGox wallet address and the AutoMtGox service gets to work selling your bitcoins into cash (based on rules you define) then transfers USDollars to your banking service (when dollar amount reaches a threshold).&lt;br /&gt;
&lt;br /&gt;
* You can point your miners to send bitcoins to this address for automatic conversion to cash at regular intervals.&lt;br /&gt;
* You can accept bitcoins as payment/donation on your website or service at this address and convert payments to cash.&lt;br /&gt;
* You can send bitcoins from your personal wallet to this address whenever you need cash.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Mining|Mining]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [http://www.automtgox.com AutoMtGox] website&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;
[[MtGox]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=15041</id>
		<title>Selling bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Selling_bitcoins&amp;diff=15041"/>
		<updated>2011-08-16T00:28:50Z</updated>

		<summary type="html">&lt;p&gt;Automtgox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Major Exchanges==&lt;br /&gt;
The best rates for selling medium to large amounts of bitcoins generally when withdrawing from an exchange using a cash method such as a bank transfer (ACH, EUR/SEPA).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Type || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] || Market || BTC&amp;lt;br /&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt; || BTC&amp;lt;br/&amp;gt;USD (Dwolla) || {{Table Value Yes}} || Atlanta - USA based, security certification from McAfee, provides advanced trading options with AON/FOK/Market, Short Selling coming soon, Trading API available; Dwolla only. &lt;br /&gt;
|-&lt;br /&gt;
|  [[TradeHill]] || Market || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br&amp;gt;USD (International bank wire)&amp;lt;br/&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]]&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;PEN (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Direct deposit / ACH)&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (Prepaid card via [[Paxum]])&amp;lt;br /&amp;gt;EUR (SEPA bank transfer)&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]])&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Britcoin]] || Market || BTC&amp;lt;br /&amp;gt;GBP (bank deposit) || BTC&amp;lt;br /&amp;gt;GBP (bank deposit) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Intersango]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA bank deposit) || BTC&amp;lt;br /&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Intersango.us]] || Market || BTC&amp;lt;br /&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (ACH)&amp;lt;br /&amp;gt; || BTC&amp;lt;br /&amp;gt;USD (Dwolla) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[ExchB]] || Market || BTC&amp;lt;br/&amp;gt;USD (Cash or check)&amp;lt;br /&amp;gt;USD (ING Person2Person)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (USPS Money Order by mail) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Cash or check deposits: Accepted at any Wells Fargo or Chase branch, or by mail.&lt;br /&gt;
|-&lt;br /&gt;
|  [[HelloBitcoin]] || Market || BTC&amp;lt;br/&amp;gt;USD (Cwolla)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (Check) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Offers margin trading and shorting.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin7]] || Market || BTC&amp;lt;br /&amp;gt;EUR (Bank transfer)&amp;lt;br /&amp;gt;USD (Domestic wire)&amp;lt;br /&amp;gt;USD (International wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;BGN (Bank transfer) || BTC&amp;lt;br/&amp;gt;EUR (Bank transfer)&amp;lt;br /&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;USD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;PLN (Bank transfer)&amp;lt;br /&amp;gt;SAR (Bank transfer)&amp;lt;br /&amp;gt;BGN (ePay)&amp;lt;br /&amp;gt;BGN (Bank transfer) || {{Table Value Yes}} || USD wire to Citibank.  EUR transfers to/from FiBank.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || Market || BTC&amp;lt;br/&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (online bill pay)&amp;lt;br /&amp;gt;CAD (cash at TDBank) || BTC&amp;lt;br/&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (direct deposit)&amp;lt;br /&amp;gt;CAD (Prepaid VISA) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP ) || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa) || BTC&amp;lt;br/&amp;gt;USD (Webmoney) || {{Table Value Yes}} || Language: Russian.  Interkassa can be funded from Webmoney and many other methods.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || Market || 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 [[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 ([[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars (highly liquid).&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|-&lt;br /&gt;
|  [[WM-Center]] || Exchanger || BTC&amp;lt;br/&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP || BTC&amp;lt;br /&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP&amp;lt;br /&amp;gt; PayPal USD/EUR, Moneybookers, Neteller || {{Table Value No}} || 24/7/365 support in english, spanish and russian!&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;
* [[AutoMtGox]] Convert your bitcoins to USDollars automatically.&lt;br /&gt;
* [[Bitcoin Market]] Trade your BTCs for MoneyBookers, Liberty Reserve or Pecunix.&lt;br /&gt;
* [[BitMarket.eu]] Trade your BTCs for EUR (SEPA bank transfer), GBP, USD, PLN, AUD, CAD, ZAR, ILS, CHF, and RUB as OTC with BTC Escrow.&lt;br /&gt;
* [[Bitcoiny.cz]] Trade your BTCs for CZK.  No-escrow, direct person-to-person trading.&lt;br /&gt;
* [[Bit]] / BTC China - Market for exchanging bitcoins to and from CNY.&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;
* [[Lilion Transfer]] Exchanges bitcoins for Liberty Reserve, [[Pecunix]], [[AlertPay]], [[Moneybookers]],   [[PayPal]], and more.&lt;br /&gt;
* [[Nanaimo Gold]] Redeem bitcoins for Liberty Reserve (automated) or for money transfer, money order or direct deposit within Canada.&lt;br /&gt;
* [[Bitcoin Morpheus]] purchase reloadable debit cards with bitcoins&lt;br /&gt;
* [[Bitcoin Argentina]] Trades BTC for ARS. Cash and bank transfer. No exchange fees.&lt;br /&gt;
* [[Bahtcoin]] Trade BTC for Thai Baht, cash, LR, Webmoney, or Thai mobile and gaming prepaid cards.&lt;br /&gt;
* [[Bitcoin Brasil]] Cash exchange that redeems bitcoins for BRL, USD.&lt;br /&gt;
* [[Bitcoin.com.es]] Trade your BTCs for EUR (Bank transfer).&lt;br /&gt;
* [[BitPiggy]] Trade your BTCs for AUD (Bank transfer).&lt;br /&gt;
* [[GetBitcoin]] Trade your BTCs for USD (Cash, Check or Bank Wire).&lt;br /&gt;
* [[Bitcoin2Cash]] Redeems bitcoins with cash mailed to you&lt;br /&gt;
* [[Bitcoin 2 Credit Card]] purchase virtual VISA prepaid cards with bitcoins&lt;br /&gt;
* [[Bitcoin 4 Cash]] Redeems bitcoins with cash mailed to you&lt;br /&gt;
* [[Bitcoin Cashout]] purchase virtual prepaid cards with bitcoins&lt;br /&gt;
* [[btcbuy|BTC Buy]] Simple interface to trade your BTCs for Amazon, Buy.com, NewEgg, and Walmart gift cards&lt;br /&gt;
* [[bitcoin.local]] arranges for exchanging currencies in person with someone nearby&lt;br /&gt;
* [[Ubitex]] In-person exchange&lt;br /&gt;
* [[Bitcoil]] Exchange BTC for ILS with bank transfers in Israel&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;
* [[Comparison of exchanges]]&lt;/div&gt;</summary>
		<author><name>Automtgox</name></author>
	</entry>
</feed>