Bitcoin Forum

Economy => Web Wallets => Topic started by: LKC on November 10, 2015, 03:11:49 PM



Title: [HOW TO] Gathering address tag from blockchain.info
Post by: LKC on November 10, 2015, 03:11:49 PM
Hi,

Follow up the previous post. https://bitcointalk.org/index.php?topic=1145501.msg12185113#msg12185113

I did somehow develop a new heuristic to cluster Bitcoin address together using many kind of methods.

Now I want to evaluate the result. I found on blockchin.info that they have the tag for addresses.

However, I don't see how can I request the tag through their API.

Did anyone done something similar before?

(I also found this website, https://jsapi.apiary.io/apis/blockstem/reference/authentication.html

It provides the API to let you request for the address tag. Still trying to confirm what is the source of their tag with them.)

--------------------------------------------------------------------------------------------------------

Here is another idea to evaluate the result.

I was thinking maybe I can recreate the Bitcoin network with some models, and cluster the addresses in the artificial network.

With the artificial network, I might be able to know which addresses are in the same cluster in advance.

And compare it with the result after I cluster the addresses.

Just not sure if it is feasible.

----------------------------------------------------------------------------------------------------------



Any idea or help are very much appreciated!!!





Title: Re: [HOW TO] Gathering address tag from blockchain.info
Post by: DannyHamilton on November 10, 2015, 03:20:15 PM
https://blockchain.info/address/16EW6Rv9P9AxFDBrZV816dD4sj1EAYUX3f?format=json

Code:
.
.
.
{
         "addr_tag_link":"http:\/\/bitknock.com\/calculator",
         "addr_tag":"Bitknock",
         .
         .
         .
}
.
.
.


Title: Re: [HOW TO] Gathering address tag from blockchain.info
Post by: micaman on November 10, 2015, 03:27:50 PM
There is also a list at https://blockchain.info/pt/tags


Title: Re: [HOW TO] Gathering address tag from blockchain.info
Post by: LKC on November 11, 2015, 11:17:31 AM
Got it, thanks everyone!