2019-10-06 13:07:28 +02:00
<!DOCTYPE html>
< html lang = "en-us" >
< head >
< meta charset = "utf-8" >
2021-02-23 16:52:14 +01:00
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" >
< title > Flowee BitCore-proxy< / title >
< meta name = "description" content = "BitCore service backed by Flowee" / >
< link href = "https://flowee.org/flowee.css" rel = 'stylesheet' type = "text/css" / >
2019-10-06 13:07:28 +02:00
< / head >
< body >
2021-02-23 16:52:14 +01:00
< header > < nav >
< div class = "home" > < a href = "/" > < img src = "https://flowee.org/images/logo-flowee-white.png" / > < / a > < / div >
< div class = "navigation" >
< a href = "https://flowee.org" title = "Flowee.org" > Flowee.org< / a > |
< a href = "https://flowee.org/news/" title = "News" > news< / a >
< / div > < / nav > < / header >
< main id = "main" >
< div class = "banner-area" > < span class = "banner-text" > < p class = "banner-slogan-text" > Flowee Bitcore service< / p > < / div >
< / div >
< div class = "products-list" >
< p class = "title-text" > Help page for the bitcore service< / p >
< p class = "slogan-text" > Address API< / p >
< span class = "content-text" >
2019-10-06 13:07:28 +02:00
< p > < pre > < b > %ERROR%< / b > < / pre > < / p >
< p > What follows is an exhaustive description of the different types of '< b > address< / b > ' requests you can pose to this server:< / p >
< h3 > Get all outputs depositing money into an address< / h3 >
2020-08-24 18:17:39 +02:00
< p > < code > GET `/api/BCH/mainnet/address/{address}/txs`< / code >
2019-10-06 13:07:28 +02:00
(< a href = "/api/BCH/mainnet/address/1PYELM7jXHy5HhatbXGXfRpGrgMMxmpobu/txs" target = "_other" > example< / a > )< / p >
< p > Notice that address can be of type 'bitcoincash', but should not have the preceding 'bitcoincash:' identifier. Legacy type addresses are supported.< / p >
< h3 > Get all outputs for an address still unspent< / h3 >
2020-08-24 18:17:39 +02:00
< p > < code > GET `/api/BCH/mainnet/address/{address}/?unspent`< / code >
2019-10-06 13:07:28 +02:00
(< a href = "/api/BCH/mainnet/address/1PYELM7jXHy5HhatbXGXfRpGrgMMxmpobu/?unspent" target = "_other" > example< / a > )< / p >
< h3 > Get the balance of an address< / h3 >
2020-08-24 18:17:39 +02:00
< p > < code > GET `/api/BCH/mainnet/address/{address}/balance`< / code >
2019-10-06 13:07:28 +02:00
(< a href = "/api/BCH/mainnet/address/1PYELM7jXHy5HhatbXGXfRpGrgMMxmpobu/balance" target = "_other" > example< / a > )< / p >
2021-02-23 16:52:14 +01:00
< / span > < / div > < / div > < / main > < footer > < / footer > < / body > < / html >