Module: IEX::Endpoints::Crypto

Included in:
Api::Client
Defined in:
lib/iex/endpoints/crypto.rb

Instance Method Summary collapse

Instance Method Details

#crypto(symbol, options = {}) ⇒ Object



4
5
6
7
8
# File 'lib/iex/endpoints/crypto.rb', line 4

def crypto(symbol, options = {})
  IEX::Resources::Crypto.new(get("crypto/#{symbol}/quote", options))
rescue Faraday::ResourceNotFound => e
  raise IEX::Errors::SymbolNotFoundError.new(symbol, e.response[:body])
end