We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GET] /api/addresses/{address}/explorer-url
Should return one or many blockchain explorer URLs for the given address.
Response:
[ // Blockchain explorer URL for the given address “string” ]
Python implementation
@api.route('/addresses/<string:address>/explorer-url', methods=['GET']) def get_explorer_url(address): """ Returns explorer url for given address """ if address in (None, ''): return make_response(jsonify(build_error('Address not specified')), 400) elif not isValidAddress(address): return make_response(jsonify(build_error('Invalid address')), 204) explorer_urls = ['https://explorer.skycoin.net/app/address/' + address] return jsonify(explorer_urls)
The text was updated successfully, but these errors were encountered:
[LazaroRaul] refs fibercrypto#24 Create initial specification for end…
9c89154
…point [api] Explorer URL
[spec] refs fibercrypto#22 fibercrypto#23 fibercrypto#24 - Add all sp…
0e5bcec
…ecifications to espec.yml
e1Ru1o
No branches or pull requests
[GET] /api/addresses/{address}/explorer-url
Should return one or many blockchain explorer URLs for the given address.
Response:
Python implementation
The text was updated successfully, but these errors were encountered: