chain.com
域名年龄: 28年7个月24天HTTP/1.1 302 临时跳转 访问时间:2015年02月05日 14:44:15 Transfer-Encoding: chunked 连接:keep-alive 设置Cookie:__cfduid=d943d8a939a073db97bffae7488b6ed691423118655; expires=Fri, 05-Feb-16 06:44:15 GMT; path=/; domain=.chain.com; HttpOnly 缓存控制:private, max-age=0, no-store, 不缓存,必须更新, post-check=0, pre-check=0 过期时间:1970年01月01日 08:00:01 目标网址:https://chain.com 服务器:cloudflare-nginx CF-RAY: 1b3d236e18b60d97-SJC HTTP/1.1 200 OK 服务器:cloudflare-nginx 访问时间:2015年02月05日 14:44:15 类型:text/html; charset=utf-8 Transfer-Encoding: chunked 连接:keep-alive 设置Cookie:__cfduid=dbe06e0e8f844336391d031bba65add9d1423118655; expires=Fri, 05-Feb-16 06:44:15 GMT; path=/; domain=.chain.com; HttpOnly Status: 200 OK Strict-Transport-Security: max-age=31536000 X-Frame-Options: SAMEORIGIN 网站XSS保护:1; mode=block X-Content-Type-Options: nosniff 网页标记:W/"070feedaa6b130360dc2b44d5f781840" 缓存控制:max-age=0, private,必须更新 设置Cookie:_chain_control_production=MXh0ZE9rTXJWbXlIYll6TjJCeldBWWxHWERDYzBaZTNMR00zZEFETGFQRnBGNlliNWtxMTZQT3NjRTJSYjhVeHlSNm1WclgyTWVEckh6UDU5UFpxeVlmdDNpV3NKdDRsdkdXTEdTMW1IVUFQdkZ2UlRRR3c4Qk1uZ1FPZnhwd3paK1BwNHZibitZM0FPQWZWRlZmZkFvdkxSTlBzRW81L3hPV0dNYzVXSHN6ZzVqRTVjRm15SDZlVGpoQWxvd3NPLS1WbmNoV2xFSUJQZEk3Wm1aZ3BmOUhnPT0%3D--f228bb329d0ae00dc32ab59b941c405f18474b30; domain=.chain.com; path=/; secure; HttpOnly X-Request-Id: 60e3fad2-91f3-4003-8aa3-af1363eb4789 X-R
该域名无法解析为IP
Toggle navigationNotificationsExplorerBlogWe're Hiring!DocumentationSign InSign UpBuild with BitcoinThe internet's open financial protocolGet StartedChain Notifications push Bitcoin data to your applicationAddressKnow when a new transaction occurs on a given address.TransactionKnow when a given transaction is confirmed on the network.New-BlockKnow when a new block is created and confirmed on the network.New-TransactionKnow when an unconfirmed transaction appears on the network.Learn MorePowerful, RESTful APIcURLRubyObj-CSwiftNodejQuerycURLRubyiOS/OS XNodejQueryGet Bitcoin Address curl https://api.chain.com/v2/bitcoin/addresses/17x23dNjXJLzGMev6R63uyRhMWP1VHawKc?api-key-id=DEMO-4a5e1e4Response[{"address": "17x23dNjXJLzGMev6R63uyRhMWP1VHawKc","total": {"balance": 5000000000,"received": 5000000000,"sent": 0},"confirmed": {"balance": 5000000000,"received": 5000000000,"sent": 0}}]Get Bitcoin Addressrequire 'chain'Chain.get_address('17x23dNjXJLzGMev6R63uyRhMWP1VHawKc')Response[{"address": "17x23dNjXJLzGMev6R63uyRhMWP1VHawKc","total": {"balance": 5000000000,"received": 5000000000,"sent": 0},"confirmed": {"balance": 5000000000,"received": 5000000000,"sent": 0}}]Get Bitcoin Address #import <Chain/Chain.h>Chain *chain = [Chain sharedInstanceWithToken:@"DEMO-4a5e1e4"];NSString *address = @"17x23dNjXJLzGMev6R63uyRhMWP1VHawKc";[chain getAddress:address completionHandler:^(NSDictionary *dictionary, NSError *error) {NSLog(@"%@", dictionary);}];Response{results ({"address": "17x23dNjXJLzGMev6R63uyRhMWP1VHawKc","total": {"balance": 5000000000,"received": 5000000000,"sent": 0},"confirmed": {"balance": 5000000000,"received": 5000000000,"sent": 0}})}Get Bitcoin Address import Chainlet chain = Chain.sharedInstanceWithToken("DEMO-4a5e1e4")chain.getAddress("17x23dNjXJLzGMev6R63uyRhMWP1VHawKc") { dictionary, error inNSLog("%@", dictionary)}Response{results ({"address": "17x23dNjXJLzGMev6R63uyRhMWP1VHawKc","total": {"balance": 5000000000,"received": 5000000000,"sent": 0},"confirmed": {"balance": 5000000000,"received": 5000000000,"sent": 0}})}Get Bitcoin Addressvar chain = require('chain-node');chain.getAddress('17x23dNjXJLzGMev6R63uyRhMWP1VHawKc', function(err, resp) {console.log(resp);});Response[{"address": "17x23dNjXJLzGMev6R63uyRhMWP1VHawKc","total": {"balance": 5000000000,
"received": 5000000000,
"sent": 0
},
"confirmed": {
"balance": 5000000000,
"received": 5000000000,
"sent": 0
}
}
]
Get Bitcoin Address
<script>
$(function() {
var api_key_id = 'DEMO-4a5e1e4';
var addr = '17x23dNjXJLzGMev6R63uyRhMWP1VHawKc';
var url = 'https://api.chain.com/v2/bitcoin/addresses/' + addr;
$.ajax({
url: url,
data: {'api-key-id': api_key_id},
type: 'GET',
success: function(data) {
console.log(data);
}
});
});
</script>
Response
[
{
"address": "17x23dNjXJLzGMev6R63uyRhMWP1VHawKc",
"total": {
"balance": 5000000000,
"received": 5000000000,
"sent": 0
},
"confirmed": {
"balance": 5000000000,
"received": 5000000000,
"sent": 0
}
}
]
Documentation
Get API Key
Enterprise-grad
© 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询
2026-01-02 23:27, Process in 0.0052 second.