Skip to content
This repository was archived by the owner on Aug 3, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions lib/zaif.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ def get_info
return json
end

# Get user infomation except for trade_count (light version).
# Need api key.
# @return [Hash] Infomation of user.
def get_info2
json = post_ssl(@zaif_trade_url, "get_info2", {})
return json
end

# Get your trade history.
# Avalible options: from. count, from_id, end_id, order, since, end, currency_pair
# Need api key.
Expand Down