Python, RapidAPI Terms

APIs and tooling like Jupyter docs allows many opportunities in fields like Data Science. As more and more developers use APIs, they build standards in how you setup a client, send requests and receive information...

Covid19 RapidAPI Example

To begin the API journey. You need to find an API provider.

  • RapidAPI is a great option. You must setup and account, but there are many free options.
  • Goto this page for starters, the Corona virus World and India data- Under Code Snippets pick Python - Requests

RapidAPI, you will select Python Requests type of code to work with you Notebook.

  • The url is the endpoint to which the API is directed
  • The headers is a dictionary data structure to send special messaging to the endpoint
  • The requests.request() python function is used to send a request and retrieve their responses
  • The response variable receives result of of the request in JSON text

Next step, is to format the response according to your data science needs

"""
Requests is a HTTP library for the Python programming language. 
The goal of the project is to make HTTP requests simpler and more human-friendly. 
"""
import requests

"""
RapidAPI is the world's largest API Marketplace. 
Developers use Rapid API to discover and connect to thousands of APIs. 
"""
url = "https://corona-virus-world-and-india-data.p.rapidapi.com/api"
headers = {
    'x-rapidapi-key': "df8fd83b8dmsh92c06c5d89786f9p1e38c2jsn438e54c0af45",
    'x-rapidapi-host': "corona-virus-world-and-india-data.p.rapidapi.com"
}

# Request Covid Data
response = requests.request("GET", url, headers=headers)
# print(response.text)  # uncomment this line to see raw data

# This code looks for "world data"
print("World Totals")
world = response.json().get('world_total')  # turn response to json() so we can extract "world_total"
for key, value in world.items():  # this finds key, value pairs in country
    print(key, value)

print()

# This code looks for USA in "countries_stats"
print("Country Totals")
countries = response.json().get('countries_stat')
for country in countries:  # countries is a list
    if country["country_name"] == "USA":  # this filters for USA
        for key, value in country.items():  # this finds key, value pairs in country
            print(key, value)
World Totals
total_cases 509,268,964
new_cases 204,268
total_deaths 6,242,509
new_deaths 630
total_recovered 461,827,849
active_cases 41,198,606
serious_critical 42,510
total_cases_per_1m_population 65,334
deaths_per_1m_population 800.9
statistic_taken_at 2022-04-24 11:18:01

Country Totals
country_name USA
cases 82,649,779
deaths 1,018,316
region 
total_recovered 80,434,925
new_deaths 0
new_cases 0
serious_critical 1,465
active_cases 1,196,538
total_cases_per_1m_population 247,080
deaths_per_1m_population 3,044
total_tests 1,000,275,726
tests_per_1m_population 2,990,303
# RapidAPI page https://rapidapi.com/Coinranking/api/coinranking1/

# Begin Rapid API Code
import requests

url = "https://mcu-comics-and-characters.p.rapidapi.com/mcu/comics"
querystring = {"referenceCurrencyUuid":"yhjMzLPhuIDl","timePeriod":"24h","tiers[0]":"1","orderBy":"marketCap","orderDirection":"desc","limit":"50","offset":"0"}
headers = {
	"X-RapidAPI-Key": "df8fd83b8dmsh92c06c5d89786f9p1e38c2jsn438e54c0af45",  # place your key here
	"X-RapidAPI-Host": "mcu-comics-and-characters.p.rapidapi.com"
}

response = requests.request("GET", url, headers=headers, params=querystring)
print(response.json())
# End Rapid API Code
json = response.json()  # convert response to python json object

# Observe data from an API.  This is how data transports over the internet in a "JSON" text form
# - The JSON "text" is formed in dictionary {} and list [] divisions
# - To read the result, Data Scientist of  Developer converts JSON into human readable form
# - Review the first line, look for the keys --  "status" and "data"
[{'title': 'File:85F11A8E-6503-4B71-B65C-B67E3EF50378.jpeg', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/File:85F11A8E-6503-4B71-B65C-B67E3EF50378.jpeg', 'source': 'fandom'}, {'title': 'Agents of S.H.I.E.L.D.: The Chase', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Agents_of_S.H.I.E.L.D.:_The_Chase', 'source': 'fandom'}, {'title': 'Ant-Man - Scott Lang: Small Time', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Ant-Man_-_Scott_Lang:_Small_Time', 'source': 'fandom'}, {'title': 'Ant-Man and the Wasp Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Ant-Man_and_the_Wasp_Prelude', 'source': 'fandom'}, {'title': 'Ant-Man Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Ant-Man_Prelude', 'source': 'fandom'}, {'title': 'Ant-Man: Larger Than Life', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Ant-Man:_Larger_Than_Life', 'source': 'fandom'}, {'title': "Avengers: Age of Ultron Prelude - This Scepter'd Isle", 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Avengers:_Age_of_Ultron_Prelude_-_This_Scepter%27d_Isle', 'source': 'fandom'}, {'title': 'Avengers: Age of Ultron: Episode 0', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Avengers:_Age_of_Ultron:_Episode_0', 'source': 'fandom'}, {'title': 'Avengers: Endgame Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Avengers:_Endgame_Prelude', 'source': 'fandom'}, {'title': 'Avengers: Infinity War Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Avengers:_Infinity_War_Prelude', 'source': 'fandom'}, {'title': 'Avengers: Operation HYDRA', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Avengers:_Operation_HYDRA', 'source': 'fandom'}, {'title': 'Black Panther Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Black_Panther_Prelude', 'source': 'fandom'}, {'title': 'Black Widow Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Black_Widow_Prelude', 'source': 'fandom'}, {'title': 'Captain America & Thor: Avengers!', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America_%26_Thor:_Avengers!', 'source': 'fandom'}, {'title': 'Captain America: Civil War Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_Civil_War_Prelude', 'source': 'fandom'}, {'title': 'Captain America: Civil War Prelude Infinite Comic', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_Civil_War_Prelude_Infinite_Comic', 'source': 'fandom'}, {'title': 'Captain America: Evil Lurks Everywhere', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_Evil_Lurks_Everywhere', 'source': 'fandom'}, {'title': 'Captain America: First Vengeance', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_First_Vengeance', 'source': 'fandom'}, {'title': 'Captain America: Homecoming', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_Homecoming', 'source': 'fandom'}, {'title': 'Captain America: Road to War', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_Road_to_War', 'source': 'fandom'}, {'title': 'Captain America: The First Avenger Adaptation', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_The_First_Avenger_Adaptation', 'source': 'fandom'}, {'title': 'Captain America: The Winter Soldier Infinite Comic', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_America:_The_Winter_Soldier_Infinite_Comic', 'source': 'fandom'}, {'title': 'Captain Marvel Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Captain_Marvel_Prelude', 'source': 'fandom'}, {'title': 'Doctor Strange Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Doctor_Strange_Prelude', 'source': 'fandom'}, {'title': 'Doctor Strange Prelude - The Zealot', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Doctor_Strange_Prelude_-_The_Zealot', 'source': 'fandom'}, {'title': 'Doctor Strange: Episode 0', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Doctor_Strange:_Episode_0', 'source': 'fandom'}, {'title': 'Doctor Strange: Mystic Apprentice', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Doctor_Strange:_Mystic_Apprentice', 'source': 'fandom'}, {'title': 'Eternals: The 500 Year War', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Eternals:_The_500_Year_War', 'source': 'fandom'}, {'title': 'Guardians of the Galaxy Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Guardians_of_the_Galaxy_Prelude', 'source': 'fandom'}, {'title': 'Guardians of the Galaxy Prequel Infinite Comic', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Guardians_of_the_Galaxy_Prequel_Infinite_Comic', 'source': 'fandom'}, {'title': 'Guardians of the Galaxy Vol. 2 Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Guardians_of_the_Galaxy_Vol._2_Prelude', 'source': 'fandom'}, {'title': "Guardians of the Galaxy: Galaxy's Most Wanted", 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Guardians_of_the_Galaxy:_Galaxy%27s_Most_Wanted', 'source': 'fandom'}, {'title': 'Iron Man 2 Adaptation', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_2_Adaptation', 'source': 'fandom'}, {'title': 'Iron Man 2: Black Widow: Agent of S.H.I.E.L.D.', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_2:_Black_Widow:_Agent_of_S.H.I.E.L.D.', 'source': 'fandom'}, {'title': 'Iron Man 2: Fist of Iron', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_2:_Fist_of_Iron', 'source': 'fandom'}, {'title': 'Iron Man 2: Nick Fury: Director of S.H.I.E.L.D.', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_2:_Nick_Fury:_Director_of_S.H.I.E.L.D.', 'source': 'fandom'}, {'title': 'Iron Man 2: Phil Coulson: Agent of S.H.I.E.L.D.', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_2:_Phil_Coulson:_Agent_of_S.H.I.E.L.D.', 'source': 'fandom'}, {'title': 'Iron Man 2: Public Identity', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_2:_Public_Identity', 'source': 'fandom'}, {'title': 'Iron Man 2: Security Breach', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_2:_Security_Breach', 'source': 'fandom'}, {'title': 'Iron Man 3 Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_3_Prelude', 'source': 'fandom'}, {'title': 'Iron Man Royal Purple Custom Comic', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man_Royal_Purple_Custom_Comic', 'source': 'fandom'}, {'title': 'Iron Man: Fast Friends', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man:_Fast_Friends', 'source': 'fandom'}, {'title': 'Iron Man: I Am Iron Man!', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man:_I_Am_Iron_Man!', 'source': 'fandom'}, {'title': 'Iron Man: Limited Edition', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man:_Limited_Edition', 'source': 'fandom'}, {'title': 'Iron Man: Security Measures', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man:_Security_Measures', 'source': 'fandom'}, {'title': 'Iron Man: The Coming of the Melter', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man:_The_Coming_of_the_Melter', 'source': 'fandom'}, {'title': 'Iron Man: The Price of Doing Business', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man:_The_Price_of_Doing_Business', 'source': 'fandom'}, {'title': 'Iron Man: Will Online Evils Prevail?', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Iron_Man:_Will_Online_Evils_Prevail%3F', 'source': 'fandom'}, {'title': 'Jessica Jones (comic)', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Jessica_Jones_(comic)', 'source': 'fandom'}, {'title': 'List of Multiverse Comics', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/List_of_Multiverse_Comics', 'source': 'fandom'}, {'title': 'Nick Fury: Spies Like Us', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Nick_Fury:_Spies_Like_Us', 'source': 'fandom'}, {'title': 'Spider-Man: Far From Home - Got To Hand it To Him', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Far_From_Home_-_Got_To_Hand_it_To_Him', 'source': 'fandom'}, {'title': "Spider-Man: Far From Home - Them's The Brakes", 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Far_From_Home_-_Them%27s_The_Brakes', 'source': 'fandom'}, {'title': 'Spider-Man: Far From Home Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Far_From_Home_Prelude', 'source': 'fandom'}, {'title': 'Spider-Man: Homecoming Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Homecoming_Prelude', 'source': 'fandom'}, {'title': 'Spider-Man: Homecoming: Fight or Flight', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Homecoming:_Fight_or_Flight', 'source': 'fandom'}, {'title': 'Spider-Man: Homecoming: Morning Rush', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Homecoming:_Morning_Rush', 'source': 'fandom'}, {'title': 'Spider-Man: Homecoming: School of Shock', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Homecoming:_School_of_Shock', 'source': 'fandom'}, {'title': 'The Avengers Adaptation', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/The_Avengers_Adaptation', 'source': 'fandom'}, {'title': 'The Avengers Prelude: Black Widow Strikes', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/The_Avengers_Prelude:_Black_Widow_Strikes', 'source': 'fandom'}, {'title': "The Avengers Prelude: Fury's Big Week", 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/The_Avengers_Prelude:_Fury%27s_Big_Week', 'source': 'fandom'}, {'title': 'The Avengers: Iron Man Mark VII', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/The_Avengers:_Iron_Man_Mark_VII', 'source': 'fandom'}, {'title': 'The Avengers: The Avengers Initiative', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/The_Avengers:_The_Avengers_Initiative', 'source': 'fandom'}, {'title': 'The Incredible Hulk: The Big Picture', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/The_Incredible_Hulk:_The_Big_Picture', 'source': 'fandom'}, {'title': 'The Incredible Hulk: The Fury Files', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/The_Incredible_Hulk:_The_Fury_Files', 'source': 'fandom'}, {'title': 'Thor Adaptation', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Thor_Adaptation', 'source': 'fandom'}, {'title': 'Thor, The Mighty Avenger', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Thor,_The_Mighty_Avenger', 'source': 'fandom'}, {'title': 'Thor: Crown of Fools', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Thor:_Crown_of_Fools', 'source': 'fandom'}, {'title': 'Thor: Ragnarok Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Thor:_Ragnarok_Prelude', 'source': 'fandom'}, {'title': 'Thor: Rescue', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Thor:_Rescue', 'source': 'fandom'}, {'title': 'Thor: The Dark World Prelude', 'link': 'https://marvelcinematicuniverse.fandom.com/wiki/Thor:_The_Dark_World_Prelude', 'source': 'fandom'}]

Digital Coin Example

This example provides digital coin feedback (ie Bitcoin). It include popularity, price, symbols, etc.

  • A valid X-RapidAPI-Key is required. Look in code for link to RapidAPI page
  • Read all comments in code for further guidance
# RapidAPI page https://rapidapi.com/Coinranking/api/coinranking1/

# Begin Rapid API Code
import requests

url = "https://coinranking1.p.rapidapi.com/coins"
querystring = {"referenceCurrencyUuid":"yhjMzLPhuIDl","timePeriod":"24h","tiers[0]":"1","orderBy":"marketCap","orderDirection":"desc","limit":"50","offset":"0"}
headers = {
	"X-RapidAPI-Key": "df8fd83b8dmsh92c06c5d89786f9p1e38c2jsn438e54c0af45",  # place your key here
	"X-RapidAPI-Host": "coinranking1.p.rapidapi.com"
}

response = requests.request("GET", url, headers=headers, params=querystring)
print(response.json())
# End Rapid API Code
json = response.json()  # convert response to python json object

# Observe data from an API.  This is how data transports over the internet in a "JSON" text form
# - The JSON "text" is formed in dictionary {} and list [] divisions
# - To read the result, Data Scientist of  Developer converts JSON into human readable form
# - Review the first line, look for the keys --  "status" and "data"
{'status': 'success', 'data': {'stats': {'total': 1482, 'totalCoins': 21332, 'totalMarkets': 31404, 'totalExchanges': 170, 'totalMarketCap': '940322280686', 'total24hVolume': '43559675637'}, 'coins': [{'uuid': 'Qwsogvtv82FCd', 'symbol': 'BTC', 'name': 'Bitcoin', 'color': '#f7931A', 'iconUrl': 'https://cdn.coinranking.com/bOabBYkcX/bitcoin_btc.svg', 'marketCap': '369459599266', 'price': '19261.25952935943', 'listedAt': 1330214400, 'tier': 1, 'change': '0.71', 'rank': 1, 'sparkline': ['19118.618429060065', '19152.047979070794', '19226.531315768574', '19272.6811610052', '19247.768489086793', '19168.224307833636', '19208.48695100609', '19223.148248544145', '19253.014607516983', '19238.6801310188', '19278.68924064656', '19257.400846939177', '19173.841389057885', '19190.27372217103', '19292.464835812232', '19288.63721567692', '19260.120136779893', '19279.867354615144', '19270.968017402833', '19232.256911772594', '19208.314788593623', '19242.590168491886', '19239.485714274895', '19227.39771935387', '19243.93656058023'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/Qwsogvtv82FCd+bitcoin-btc', '24hVolume': '21364422732', 'btcPrice': '1'}, {'uuid': 'razxDUgYGNAdQ', 'symbol': 'ETH', 'name': 'Ethereum', 'color': '#3C3C3D', 'iconUrl': 'https://cdn.coinranking.com/rk4RKHOuW/eth.svg', 'marketCap': '159397827708', 'price': '1306.4486927975051', 'listedAt': 1438905600, 'tier': 1, 'change': '1.81', 'rank': 2, 'sparkline': ['1282.3602842286311', '1284.7589641680818', '1290.2050926781308', '1293.4737882153256', '1290.9091791480116', '1284.3198373319278', '1287.2731628627234', '1288.1076946284347', '1290.9214207910436', '1290.9050892136795', '1293.2621294641094', '1291.3164138138325', '1286.3860097427723', '1287.7481089599557', '1304.1596084025905', '1308.388596870348', '1304.471855175519', '1306.7193627261515', '1305.9018731709803', '1302.8757629080892', '1302.4813199431971', '1302.480015087592', '1301.7369923197114', '1304.2465895165728', '1306.1216393945492'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/razxDUgYGNAdQ+ethereum-eth', '24hVolume': '7964496320', 'btcPrice': '0.06782779136567471'}, {'uuid': 'HIVsRcGKkPFtW', 'symbol': 'USDT', 'name': 'Tether USD', 'color': '#22a079', 'iconUrl': 'https://cdn.coinranking.com/mgHqwlCLj/usdt.svg', 'marketCap': '68387816459', 'price': '0.9993461687488656', 'listedAt': 1420761600, 'tier': 1, 'change': '0.02', 'rank': 3, 'sparkline': ['0.9993395684804814', '1.0010839276724635', '1.0038045876368618', '1.0064267556404842', '1.005933628861618', '1.001843808665762', '1.0041373497497617', '1.0048499669304767', '1.00677938704011', '1.0047969081661852', '1.0072480128361676', '1.0059582056306209', '1.0023058271419099', '1.0016350285739273', '0.9986401425656025', '0.9982867482386613', '1.0004885152119514', '0.9991828923840009', '1.000323932773643', '1.0003769655554222', '1.0001860177071658', '1.0024294704128083', '1.0029894575922955', '1.001917899277715', '1.0002261347763826'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/HIVsRcGKkPFtW+tetherusd-usdt', '24hVolume': '28169116671', 'btcPrice': '0.000051883739338312'}, {'uuid': 'aKzUVe4Hh_CON', 'symbol': 'USDC', 'name': 'USDC', 'color': '#7894b4', 'iconUrl': 'https://cdn.coinranking.com/jkDf8sQbY/usdc.svg', 'marketCap': '45002029025', 'price': '0.9999694686501251', 'listedAt': 1539043200, 'tier': 1, 'change': '0.02', 'rank': 4, 'sparkline': ['0.9992684902580959', '1.0011944809874016', '1.0034376277835928', '1.006036500176633', '1.0058925437125612', '1.0019240607279902', '1.0037927969600813', '1.0046281992102588', '1.006726054238049', '1.004791158530787', '1.0071058935572963', '1.0058995162910869', '1.00237809519292', '1.001765160832643', '0.9984842167523754', '0.9983045889366087', '1.000288688759704', '0.9989729839879627', '1.0002002167783741', '1.000121095472791', '1.0000904611394987', '1.0020786077803054', '1.0028039038507761', '1.0017780928036517', '1.0000612521437147'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/aKzUVe4Hh_CON+usdc-usdc', '24hVolume': '2534728964', 'btcPrice': '0.000051916099626086'}, {'uuid': 'WcwrkfNI4FUAe', 'symbol': 'BNB', 'name': 'Binance Coin', 'color': '#e8b342', 'iconUrl': 'https://cdn.coinranking.com/B1N19L_dZ/bnb.svg', 'marketCap': '38776387516', 'price': '271.51394635832514', 'listedAt': 1503014400, 'tier': 1, 'change': '0.67', 'rank': 5, 'sparkline': ['269.7257467704375', '270.2557237712071', '271.40107783995506', '272.3396882751164', '271.80139022907986', '270.4484644246448', '271.02345588485446', '271.1221613952438', '271.68688315094977', '271.4054880974415', '272.58024553380466', '272.1825283157711', '271.1264810632811', '271.4278264312544', '272.6744593777318', '272.7764096168631', '272.6917110935463', '272.7308867277922', '272.57446777537547', '271.93856280350997', '271.7839994779747', '272.27481841625723', '272.62413778052337', '271.4225693787888', '271.43082189387013'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/WcwrkfNI4FUAe+binancecoin-bnb', '24hVolume': '633348957', 'btcPrice': '0.01409637547038207'}, {'uuid': '-l8Mn2pVlRs-p', 'symbol': 'XRP', 'name': 'XRP', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/B1oPuTyfX/xrp.svg', 'marketCap': '23383147052', 'price': '0.4679981759837921', 'listedAt': 1421798400, 'tier': 1, 'change': '-3.16', 'rank': 6, 'sparkline': ['0.482915645569848', '0.48421177924403613', '0.4864083769425917', '0.48773769034516967', '0.48542293566746925', '0.4831747613064029', '0.484164344586399', '0.4847840928740315', '0.4850723062541238', '0.48402359878762125', '0.48117205242706224', '0.4793030141255263', '0.473673402627763', '0.4736942859008892', '0.47837244196073503', '0.4771386320963164', '0.47599953826273805', '0.47717928391388326', '0.47664797903703815', '0.4743980533211799', '0.4704600147288911', '0.46846004805539043', '0.46780001309570696', '0.4699524632109079', '0.4703626683988354'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/-l8Mn2pVlRs-p+xrp-xrp', '24hVolume': '1490847663', 'btcPrice': '0.000024297381761065'}, {'uuid': 'vSo2fu9iE1s0Y', 'symbol': 'BUSD', 'name': 'Binance USD', 'color': '#f0b90b', 'iconUrl': 'https://cdn.coinranking.com/6SJHRfClq/busd.svg', 'marketCap': '21281192698', 'price': '0.9997076248427321', 'listedAt': 1563197940, 'tier': 1, 'change': '1.14', 'rank': 7, 'sparkline': ['0.998666800223192', '1.0013701335821172', '1.0041560935606446', '1.0081376900999608', '1.0065763192014932', '1.0020545072606588', '1.0051181397049118', '1.0060266749066105', '1.0075501757854206', '1.0056103897077058', '1.0085719864769767', '1.0063972809756199', '1.0022968993676418', '1.0018621246022679', '0.9984728417671082', '0.9982419762410677', '1.0005998361543003', '0.9993201215492994', '0.9998990441679144', '1.0003722904917463', '1.0000381875169317', '1.0035111634713725', '1.0032602252560203', '1.0022319380346858', '1.00021002332989'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/vSo2fu9iE1s0Y+binanceusd-busd', '24hVolume': '5254034486', 'btcPrice': '0.000051902505301842'}, {'uuid': 'qzawljRxB5bYu', 'symbol': 'ADA', 'name': 'Cardano', 'color': '#3cc8c8', 'iconUrl': 'https://cdn.coinranking.com/ryY28nXhW/ada.svg', 'marketCap': '11449990171', 'price': '0.368019149385374', 'listedAt': 1506902400, 'tier': 1, 'change': '0.52', 'rank': 8, 'sparkline': ['0.36624096617097385', '0.3675985643608314', '0.3695077757962249', '0.3702266919415414', '0.3699017988030716', '0.3678204785838002', '0.3681198776947073', '0.3678384636296716', '0.3681899249465513', '0.3678148976004817', '0.36816426439989897', '0.3676720706604023', '0.3659055749286493', '0.3662248423981988', '0.3711150831066729', '0.3696719874383244', '0.36928424375100066', '0.3699568263426734', '0.3703343081139867', '0.369034032917112', '0.36793546397279336', '0.3684620893888765', '0.3682207694554789', '0.36766711824210513', '0.36827481659217653'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/qzawljRxB5bYu+cardano-ada', '24hVolume': '351351510', 'btcPrice': '0.000019106702177208'}, {'uuid': 'zNZHO_Sjf', 'symbol': 'SOL', 'name': 'Solana', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/yvUG4Qex5/solana.svg', 'marketCap': '10851469691', 'price': '30.309772438515694', 'listedAt': 1586539320, 'tier': 1, 'change': '1.71', 'rank': 9, 'sparkline': ['29.779292131830086', '29.78197082293148', '29.992693906269178', '30.11176618247792', '30.109387681386362', '29.96331271233968', '30.02420685480023', '30.044180226136188', '30.08996952072842', '30.099335215709427', '30.12299077249488', '30.074369632714316', '29.94343861019959', '29.97606508871426', '30.268442461586247', '30.274684899016176', '30.143791021251996', '30.191916261824414', '30.166875642934123', '30.025426273095853', '29.971169166184325', '30.03014792856177', '30.062762359653107', '30.101608066743243', '30.258613848988315'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/zNZHO_Sjf+solana-sol', '24hVolume': '724728258', 'btcPrice': '0.001573613210097466'}, {'uuid': 'a91GCGd_u96cF', 'symbol': 'DOGE', 'name': 'Dogecoin', 'color': '#c2a633', 'iconUrl': 'https://cdn.coinranking.com/H1arXIuOZ/doge.svg', 'marketCap': '8054352028', 'price': '0.05904075101089855', 'listedAt': 1391212800, 'tier': 1, 'change': '0.06', 'rank': 10, 'sparkline': ['0.05897221894324444', '0.05907418019762592', '0.05935434099524169', '0.05947442674635466', '0.05932288166603251', '0.05905151235484094', '0.05911599780916434', '0.05912467080977094', '0.05919434505879581', '0.05915836871191926', '0.05916498337485349', '0.05901063785949082', '0.05877544900711393', '0.058821429695969', '0.059168032497492036', '0.059030157116194394', '0.05886123314121539', '0.05898461065725823', '0.05898353030429193', '0.05880736378190821', '0.05874947463021348', '0.058806754605286636', '0.058876924121368565', '0.05889074499293062', '0.05904145416437127'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/a91GCGd_u96cF+dogecoin-doge', '24hVolume': '185959664', 'btcPrice': '0.000003065259097979'}, {'uuid': '25W7FG7om', 'symbol': 'DOT', 'name': 'Polkadot', 'color': '#d64cA8', 'iconUrl': 'https://cdn.coinranking.com/RsljYqnbu/polkadot.svg', 'marketCap': '7124393075', 'price': '6.175847367590765', 'listedAt': 1598365200, 'tier': 1, 'change': '0.75', 'rank': 11, 'sparkline': ['6.127991620102315', '6.135570647907805', '6.177054262763071', '6.201143036762456', '6.18608725895951', '6.153865323964418', '6.172678945410776', '6.171154505222914', '6.177436619815017', '6.183538342125758', '6.196858404657261', '6.180986548211667', '6.154329019089203', '6.159506279578891', '6.207165201209745', '6.201484180071224', '6.185434847288513', '6.194424877333342', '6.1905593478760235', '6.172574108726447', '6.166885988155259', '6.151688266962456', '6.1551678698202', '6.156343114117336', '6.171202940211879'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/25W7FG7om+polkadot-dot', '24hVolume': '181478674', 'btcPrice': '0.000320635696651981'}, {'uuid': 'uW2tk-ILY0ii', 'symbol': 'MATIC', 'name': 'Polygon', 'color': '#8247e5', 'iconUrl': 'https://cdn.coinranking.com/WulYRq14o/polygon.png', 'marketCap': '7053691444', 'price': '0.8056199266825756', 'listedAt': 1558961160, 'tier': 1, 'change': '1.56', 'rank': 12, 'sparkline': ['0.7929656630989123', '0.7945814792999905', '0.7998327570728745', '0.8019094578715419', '0.8021147419063761', '0.8013530341691355', '0.8036782628957397', '0.8030577412379017', '0.8025255056744882', '0.8012736685930527', '0.8010750893614114', '0.7982976758404406', '0.7934452801398792', '0.7947191938953331', '0.8033615762207741', '0.8025233811440007', '0.801181506274165', '0.8023805992658026', '0.7999324392412426', '0.7992421953473817', '0.8027932970798685', '0.8037557321104462', '0.8021472832569604', '0.802399271337554', '0.8064339658679954'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/uW2tk-ILY0ii+polygon-matic', '24hVolume': '176969727', 'btcPrice': '0.000041825921376252'}, {'uuid': 'xz24e0BjL', 'symbol': 'SHIB', 'name': 'Shiba Inu', 'color': '#fda32b', 'iconUrl': 'https://cdn.coinranking.com/D69LfI-tm/shib.png', 'marketCap': '6065477065', 'price': '0.000010288254400056', 'listedAt': 1620650373, 'tier': 1, 'change': '-0.08', 'rank': 13, 'sparkline': ['0.00001028702380967', '0.000010299757100138', '0.000010328528501746', '0.00001035397657097', '0.000010325799253463', '0.000010261336736295', '0.000010305425753936', '0.000010312419762226', '0.000010300685862624', '0.00001030226145774', '0.000010304622940414', '0.000010264927686856', '0.000010226247021888', '0.000010233749704094', '0.000010302293636159', '0.000010319537689079', '0.000010287761561181', '0.000010310831887809', '0.000010298340789516', '0.000010262647784569', '0.000010263340484212', '0.000010263562624024', '0.000010260122200235', '0.000010246918254572', '0.000010282700043516'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/xz24e0BjL+shibainu-shib', '24hVolume': '131777081', 'btcPrice': '5.34142348e-10'}, {'uuid': 'MoTuySvg7', 'symbol': 'DAI', 'name': 'Dai', 'color': None, 'iconUrl': 'https://cdn.coinranking.com/mAZ_7LwOE/mutli-collateral-dai.svg', 'marketCap': '6022249687', 'price': '1.0001348966248338', 'listedAt': 1585574040, 'tier': 1, 'change': '0.04', 'rank': 14, 'sparkline': ['0.9992221140007138', '1.001106514673964', '1.0033248359236637', '1.0057497672611582', '1.0057816106428332', '1.0018460883309128', '1.0037893589453948', '1.004441006983722', '1.006488228697598', '1.0046455686430067', '1.006839282572942', '1.0057533434217132', '1.0023738215690707', '1.001895612969572', '0.9986220382194096', '0.9984850781297001', '1.0002876834421022', '0.9991326702910865', '1.0003313710852684', '1.0000844535350382', '1.0000246682358394', '1.0019354179621889', '1.0026928988748416', '1.001757273113136', '1.0000946262590136'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/MoTuySvg7+dai-dai', '24hVolume': '116650865', 'btcPrice': '0.000051924688263525'}, {'uuid': 'qUhEFk1I61atv', 'symbol': 'TRX', 'name': 'TRON', 'color': '#eb0029', 'iconUrl': 'https://cdn.coinranking.com/behejNqQs/trx.svg', 'marketCap': '5751340811', 'price': '0.06230350664596631', 'listedAt': 1505260800, 'tier': 1, 'change': '0.61', 'rank': 15, 'sparkline': ['0.06178925999561882', '0.06188902919902188', '0.06208327439522568', '0.06217096473643583', '0.06195567883699346', '0.06167903201489996', '0.06187580432947799', '0.06169659534954404', '0.06178367973745377', '0.06190323842984856', '0.06178722448126036', '0.061656129662783526', '0.06145733999249846', '0.061569863706365545', '0.06164654120934892', '0.06169019936883608', '0.061659433517264745', '0.06176271948140057', '0.06187120527808797', '0.06188440337021234', '0.06195076198945482', '0.062184756680430574', '0.06228899754281295', '0.062343991011393755', '0.062271544228166185'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/qUhEFk1I61atv+tron-trx', '24hVolume': '303409144', 'btcPrice': '0.000003234653816434'}, {'uuid': 'Mtfb0obXVh59u', 'symbol': 'WETH', 'name': 'Wrapped Ether', 'color': '#303030', 'iconUrl': 'https://cdn.coinranking.com/KIviQyZlt/weth.svg', 'marketCap': '5369821718', 'price': '1311.0409274618196', 'listedAt': 1600259445, 'tier': 1, 'change': '2.13', 'rank': 16, 'sparkline': ['1285.1828850790837', '1287.363244198098', '1293.1449027822418', '1294.1133832391781', '1293.2098797112087', '1284.4766268447952', '1294.2008059276866', '1284.8489860083355', '1294.3438534069362', '1288.1667970854269', '1294.2112993733099', '1293.6233048749493', '1288.2521915511993', '1287.831473615162', '1295.2044725159421', '1301.5319563678156', '1290.6320976188583', '1309.2409297704598', '1305.3673327728502', '1302.1105466385652', '1300.2635877591488', '1294.202936656439', '1292.8462741463727', '1300.1980873250807', '1302.037350040177'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/Mtfb0obXVh59u+wrappedether-weth', '24hVolume': '1537593429', 'btcPrice': '0.06809163687297759'}, {'uuid': '_H5FVG9iW', 'symbol': 'UNI', 'name': 'Uniswap', 'color': '#ff007a', 'iconUrl': 'https://cdn.coinranking.com/1heSvUgtl/uniswap-v2.svg?size=48x48', 'marketCap': '4751096691', 'price': '6.118098383396773', 'listedAt': 1600323371, 'tier': 1, 'change': '0.84', 'rank': 17, 'sparkline': ['6.066366207115234', '6.076820724181371', '6.133106316177594', '6.154170751210986', '6.139425244361414', '6.106642877427982', '6.12375793261306', '6.127189918435', '6.116794397947692', '6.113261762478594', '6.110602630778399', '6.086438294642949', '6.0425382795773785', '6.054141928419491', '6.129229203263836', '6.112833666971998', '6.094201220883914', '6.118817816090227', '6.10436582581904', '6.061970137090749', '6.071736791977104', '6.087531967026303', '6.080374276633867', '6.075974637687906', '6.108101838838083'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/_H5FVG9iW+uniswap-uni', '24hVolume': '64632065', 'btcPrice': '0.000317637503096364'}, {'uuid': 'dvUj0CzDZ', 'symbol': 'AVAX', 'name': 'Avalanche', 'color': '#e84242', 'iconUrl': 'https://cdn.coinranking.com/S0C6Cw2-w/avax-avalanche.png', 'marketCap': '4695381142', 'price': '15.843421142007257', 'listedAt': 1600961596, 'tier': 1, 'change': '1.80', 'rank': 18, 'sparkline': ['15.556294378707268', '15.578461253826736', '15.692071915682495', '15.710311364382136', '15.703328183344489', '15.612745355982279', '15.65185051862559', '15.676165162622262', '15.681948998910075', '15.683202354117137', '15.691087677051772', '15.67723145209387', '15.610721683624138', '15.636209762293303', '15.801016042086747', '15.772790710441358', '15.751428460595337', '15.777108229978905', '15.767788973992937', '15.715176556251059', '15.728651256721756', '15.760438432458153', '15.77175949209359', '15.757845555992033', '15.822121646849924'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/dvUj0CzDZ+avalanche-avax', '24hVolume': '265510194', 'btcPrice': '0.00082255374410264'}, {'uuid': 'ncYFcP709', 'symbol': 'CAKE', 'name': 'PancakeSwap', 'color': '#fe9555', 'iconUrl': 'https://cdn.coinranking.com/aRtgdw7bQ/pancakeswap-cake-logo.png', 'marketCap': '4323946040', 'price': '4.586317311995357', 'listedAt': 1613642379, 'tier': 1, 'change': '2.11', 'rank': 19, 'sparkline': ['4.493300906219307', '4.510354310983383', '4.538716754542554', '4.586100075564221', '4.603697361566694', '4.58882552104198', '4.612065728327925', '4.612334971122951', '4.60633433062466', '4.606761360070192', '4.620733868437029', '4.589286596625483', '4.5704408245619135', '4.5719851688345985', '4.581265969420576', '4.579330632596923', '4.5845750665202205', '4.58820091242423', '4.5897498590314205', '4.578425153141392', '4.57548692480973', '4.588697254898124', '4.596621802908582', '4.584634399937132', '4.580778645889613'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/ncYFcP709+pancakeswap-cake', '24hVolume': '41234499', 'btcPrice': '0.000238110976335922'}, {'uuid': 'PDKcptVnzJTmN', 'symbol': 'OKB', 'name': 'OKB', 'color': '#2d60e0', 'iconUrl': 'https://cdn.coinranking.com/xcZdYtX6E/okx.png', 'marketCap': '4159126460', 'price': '16.528895354423955', 'listedAt': 1538524800, 'tier': 1, 'change': '-0.66', 'rank': 20, 'sparkline': ['16.67517919298459', '16.706567881651157', '16.829655731290323', '16.840844229912264', '16.806868356798702', '16.73845699603562', '16.77475915313849', '16.777821900521094', '16.78576508709148', '16.737701171786295', '16.766710095462198', '16.72389532985623', '16.655505585599027', '16.65414438251343', '16.653288800601384', '16.62481695753641', '16.650390694351074', '16.68118688530056', '16.768019022434096', '16.652467081423396', '16.626569957965284', '16.709493448611227', '16.65390309972077', '16.604486171066263', '16.56513553654581'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/PDKcptVnzJTmN+okb-okb', '24hVolume': '21055393', 'btcPrice': '0.000858141978162404'}, {'uuid': 'Knsels4_Ol-Ny', 'symbol': 'ATOM', 'name': 'Cosmos', 'color': '#5064fb', 'iconUrl': 'https://cdn.coinranking.com/HJzHboruM/atom.svg', 'marketCap': '3704290623', 'price': '11.851454713454345', 'listedAt': 1552520100, 'tier': 1, 'change': '1.51', 'rank': 21, 'sparkline': ['11.677080736860045', '11.681543911726088', '11.731173900065013', '11.755099946305647', '11.706621543642804', '11.662726486210563', '11.680031521303414', '11.67181592337213', '11.655732184173011', '11.638652757838654', '11.6509799501201', '11.609136651997028', '11.562236776792684', '11.583599820497874', '11.713817045289046', '11.72498926938848', '11.711524594197096', '11.760891764908814', '11.727508433502521', '11.673989799795732', '11.689724281669434', '11.81974223463701', '11.811219925115381', '11.795018369932103', '11.842995361266048'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/Knsels4_Ol-Ny+cosmos-atom', '24hVolume': '147778498', 'btcPrice': '0.000615300089560056'}, {'uuid': 'D7B1x_ks7WhV5', 'symbol': 'LTC', 'name': 'Litecoin', 'color': '#345d9d', 'iconUrl': 'https://cdn.coinranking.com/BUvPxmc9o/ltcnew.svg', 'marketCap': '3650773096', 'price': '51.51707071608999', 'listedAt': 1382572800, 'tier': 1, 'change': '1.72', 'rank': 22, 'sparkline': ['50.627892347717555', '50.68105374337251', '50.93325453666246', '51.061436465391125', '51.076559246394574', '50.97030930787476', '51.11614810869589', '51.169322789183084', '51.24022369392634', '51.18687432691696', '51.27744763568081', '51.30571208707049', '51.0727135740256', '51.093044170479956', '51.45729038827679', '51.387164907125566', '51.255780349918', '51.54681424612038', '51.48756805929433', '51.30163084598047', '51.29846985166204', '51.327423348513456', '51.34638165822007', '51.350448772263256', '51.49812448626248'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/D7B1x_ks7WhV5+litecoin-ltc', '24hVolume': '342847937', 'btcPrice': '0.00267464703632511'}, {'uuid': 'NfeOYfNcl', 'symbol': 'FTT', 'name': 'FTX Token', 'color': '#77d9ed', 'iconUrl': 'https://cdn.coinranking.com/WyBm4_EzM/ftx-exchange.svg', 'marketCap': '3164250342', 'price': '23.724765611501525', 'listedAt': 1566222960, 'tier': 1, 'change': '1.26', 'rank': 23, 'sparkline': ['23.422889747125755', '23.45193839102034', '23.553505010734018', '23.606274337019276', '23.568331153460292', '23.48179244341023', '23.552453566042267', '23.58002988467209', '23.625966642416262', '23.64371946262818', '23.692860189987208', '23.665878547946093', '23.584609899105775', '23.60255407012774', '23.788087998429674', '23.793379158427605', '23.74325135916768', '23.778606488668956', '23.726147905562357', '23.65772258786339', '23.65758573297813', '23.692469511178615', '23.687071421696714', '23.673358887618996', '23.711819662867665'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/NfeOYfNcl+ftxtoken-ftt', '24hVolume': '45798117', 'btcPrice': '0.00123173490162149'}, {'uuid': 'hnfQfsYfeIGUQ', 'symbol': 'ETC', 'name': 'Ethereum Classic', 'color': '#699070', 'iconUrl': 'https://cdn.coinranking.com/rJfyor__W/etc.svg', 'marketCap': '2696746693', 'price': '23.185196497619483', 'listedAt': 1469577600, 'tier': 1, 'change': '0.63', 'rank': 24, 'sparkline': ['23.009826502260424', '23.054902748197474', '23.227315941868962', '23.261048303220505', '23.19478801962695', '23.134179250438134', '23.158973449278957', '23.145554512434977', '23.15153399571827', '23.13623337785194', '23.135920460697257', '23.044626022443538', '22.92855020282973', '22.997990019634567', '23.25364400384934', '23.15709081797315', '23.13010981894184', '23.221742209566912', '23.177553184940408', '23.043054917471377', '23.03547723015562', '23.088089023214422', '23.090110527703704', '23.089303017884227', '23.15715759138435'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/hnfQfsYfeIGUQ+ethereumclassic-etc', '24hVolume': '301624614', 'btcPrice': '0.001203721722469857'}, {'uuid': '3mVx2FX_iJFp5', 'symbol': 'XMR', 'name': 'Monero', 'color': '#ff7519', 'iconUrl': 'https://cdn.coinranking.com/Syz-oSd_Z/xmr.svg', 'marketCap': '2613425460', 'price': '143.6876227076651', 'listedAt': 1422489600, 'tier': 1, 'change': '1.76', 'rank': 25, 'sparkline': ['141.14259129245562', '141.4295414639023', '142.35411767096969', '142.27141187401725', '142.3631890373508', '142.16642749077567', '142.30935959035088', '142.3242356920453', '142.5513287602977', '142.58980434214112', '142.7969840950517', '142.51660968344024', '142.01363520338603', '142.00599102008712', '142.79154519911492', '142.86088508012176', '142.79011276375786', '142.94853307245117', '143.08491022418127', '142.9453566942434', '143.25349481043426', '143.60855408972992', '143.8092224183789', '143.84747284136193', '143.75204425488258'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/3mVx2FX_iJFp5+monero-xmr', '24hVolume': '78859850', 'btcPrice': '0.007459928697219714'}, {'uuid': 'f3iaFeCKEmkaZ', 'symbol': 'XLM', 'name': 'Stellar', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/78CxK1xsp/Stellar_symbol_black_RGB.svg', 'marketCap': '2284610201', 'price': '0.1130685970054593', 'listedAt': 1484611200, 'tier': 1, 'change': '-0.32', 'rank': 26, 'sparkline': ['0.11326848142580676', '0.11344892732092035', '0.1140801659260228', '0.11409490559070389', '0.11382208283412296', '0.11315079445492211', '0.11358740302305', '0.11381791021926006', '0.11420885370568662', '0.11421605951271376', '0.11418647831757364', '0.11391628721537556', '0.11295888335219267', '0.11287266551120727', '0.1136958063179714', '0.11344569701195648', '0.11331118790844437', '0.11355202331549087', '0.11355357347869835', '0.1132450226293032', '0.11315060431611924', '0.1128652752751288', '0.11294965016753372', '0.11308176561046572', '0.11318031968162583'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/f3iaFeCKEmkaZ+stellar-xlm', '24hVolume': '111200513', 'btcPrice': '0.000005870259773672'}, {'uuid': 'TpHE2IShQw-sJ', 'symbol': 'ALGO', 'name': 'Algorand', 'color': None, 'iconUrl': 'https://cdn.coinranking.com/lzbmCkUGB/algo.svg', 'marketCap': '2255786529', 'price': '0.3214243614679588', 'listedAt': 1562082540, 'tier': 1, 'change': '-0.35', 'rank': 27, 'sparkline': ['0.3228509821189612', '0.32323967003082865', '0.32754629719187717', '0.3271574626175146', '0.3254660226167553', '0.32312082525167707', '0.32408148910266743', '0.3240025913897053', '0.32329388126494424', '0.32363231040078894', '0.323677672438576', '0.3232529062740534', '0.32164600055099785', '0.32244039768966676', '0.3243241234691804', '0.32412801898565435', '0.3234221604224773', '0.3232214892097797', '0.32275614752105447', '0.32023134668107905', '0.3197700323686207', '0.3197251815799654', '0.3199499129230284', '0.32012240861564684', '0.3212754099164011'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/TpHE2IShQw-sJ+algorand-algo', '24hVolume': '77412022', 'btcPrice': '0.00001668760866744'}, {'uuid': '9_jH48RBW', 'symbol': 'BTCB', 'name': 'Bitcoin BEP2', 'color': '#ff9d14', 'iconUrl': 'https://cdn.coinranking.com/Swr_SeZio/4023.png', 'marketCap': '2161577553', 'price': '19213.851903591163', 'listedAt': 1629334963, 'tier': 1, 'change': '0.38', 'rank': 28, 'sparkline': ['19114.42642814125', '19158.87906658461', '19229.33170550436', '19305.239552425108', '19274.049496025942', '19171.55292388023', '19212.564915877847', '19226.051568792704', '19267.448185388275', '19235.961125930182', '19298.107049575574', '19244.836643006507', '19182.347222363045', '19180.66290231192', '19285.27544485933', '19298.339510838916', '19279.85620097416', '19275.43335528743', '19276.917285330328', '19250.12693673803', '19229.33354036907', '19267.81459050363', '19261.998025075012', '19238.826549892594', '19222.192332801496'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/9_jH48RBW+bitcoinbep2-btcb', '24hVolume': '4127730', 'btcPrice': '0.9979113537541332'}, {'uuid': '65PHZTpmE55b', 'symbol': 'CRO', 'name': 'Cronos', 'color': '#01275d', 'iconUrl': 'https://cdn.coinranking.com/2o91jm73M/cro.svg', 'marketCap': '2111037990', 'price': '0.10434970048446979', 'listedAt': 1548953220, 'tier': 1, 'change': '-0.10', 'rank': 29, 'sparkline': ['0.10443343150357852', '0.10457854223608624', '0.10496162850137888', '0.1052377545774755', '0.10500275485347672', '0.10454831201110025', '0.10483060825485868', '0.10495291248988114', '0.10500073820000921', '0.104947461426008', '0.10514642078722221', '0.10511032383249819', '0.10453896198834686', '0.10456106806943212', '0.10504312624906544', '0.10495235484653645', '0.10480910903417291', '0.10490227540799531', '0.1048467599781094', '0.10423242154855268', '0.10395427701644011', '0.10404337439618513', '0.10403546467560235', '0.10422205903095667', '0.10437391709717908'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/65PHZTpmE55b+cronos-cro', '24hVolume': '32095175', 'btcPrice': '0.000005417594852788'}, {'uuid': 'ZlZpzOJo43mIo', 'symbol': 'BCH', 'name': 'Bitcoin Cash', 'color': '#8dc451', 'iconUrl': 'https://cdn.coinranking.com/By8ziihX7/bch.svg', 'marketCap': '2103054981', 'price': '109.92687374233975', 'listedAt': 1541808000, 'tier': 1, 'change': '0.67', 'rank': 30, 'sparkline': ['109.17933990006964', '109.2571223538715', '110.01346016889657', '110.50055879831783', '110.288734081936', '110.01730660442827', '110.33532039812508', '110.23548588504212', '110.17863904536503', '110.28245339749361', '110.41778221718387', '110.17111492877967', '109.64266483777767', '109.69941023595798', '110.2973677292952', '110.03080292429843', '109.96003471903117', '110.28815364000589', '110.34695414380178', '109.88881440306969', '109.78336281711432', '109.8445552065359', '109.81473495016556', '109.75075388197355', '109.86593431881356'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/ZlZpzOJo43mIo+bitcoincash-bch', '24hVolume': '194231254', 'btcPrice': '0.005707148775747563'}, {'uuid': '08CsQa-Ov', 'symbol': 'WEMIX', 'name': 'WEMIX TOKEN', 'color': '#9bdc70', 'iconUrl': 'https://cdn.coinranking.com/1N84MQsoO/7548.png', 'marketCap': '1999080236', 'price': '1.9990802358622086', 'listedAt': 1638249982, 'tier': 1, 'change': '4.72', 'rank': 31, 'sparkline': ['1.9009795072338525', '1.8958529642982938', '1.8854962868857135', '1.8672610010434048', '1.8744549963915171', '1.8700342475235852', '1.8734649290927907', '1.8814634872948404', '1.8867415980372204', '1.877677994921046', '1.8793077291157578', '1.8760537535179331', '1.8690851903923544', '1.8722655834631865', '1.880796610823021', '1.887829515033978', '1.8836780716736292', '1.8824256680808016', '1.8883351780394657', '1.9487416993467055', '1.9856340321030443', '2.0237536055610543', '2.0218752615211244', '2.0374012922578233', '2.004975454288005'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/08CsQa-Ov+wemixtoken-wemix', '24hVolume': '90673824', 'btcPrice': '0.000103787617461624'}, {'uuid': 'bauj_21eYVwso', 'symbol': 'QNT', 'name': 'Quant', 'color': '#585e63', 'iconUrl': 'https://cdn.coinranking.com/a-i9Dl392/quant.png', 'marketCap': '1998530100', 'price': '204.4064498806355', 'listedAt': 1533945600, 'tier': 1, 'change': '12.22', 'rank': 32, 'sparkline': ['181.29675084581194', '184.53085103630525', '185.5264985630614', '185.43531585050238', '184.5584292130631', '181.95873756311758', '184.2751721660849', '184.69466337919994', '185.98678905655126', '184.99268493767045', '185.73664501415738', '184.76668140374295', '184.38965831572327', '185.81357245312682', '191.78876892531724', '192.22641744365225', '189.34024969375088', '191.2791122347322', '192.3333679988614', '193.0091840685389', '192.36585541286235', '194.6653781184778', '196.29160750650303', '200.72357918595918', '203.92603443855936'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/bauj_21eYVwso+quant-qnt', '24hVolume': '176943856', 'btcPrice': '0.010612309624355777'}, {'uuid': 'SbWqqTui-', 'symbol': 'ENS', 'name': 'EnergySwap', 'color': '#ffda55', 'iconUrl': 'https://cdn.coinranking.com/fmYxEUV5a/cropped-logo37-Converted-01-192x192.png', 'marketCap': '1976704377', 'price': '19.767043766007042', 'listedAt': 1626134763, 'tier': 1, 'change': '1.72', 'rank': 33, 'sparkline': ['19.47291145661599', '19.434144087464656', '19.7676644665621', '20.063728131434093', '19.89411620199196', '19.767631215739492', '19.71280643427797', '19.674810627731674', '19.548878007855556', '19.636081558720257', '19.668371159823067', '19.86972289121075', '19.828351328890005', '19.82367540184303', '19.83117344239175', '19.69619744926179', '19.68598881859378', '19.866653950867132', '19.835530305183646', '19.682483697030126', '19.6074552372614', '19.620768168551354', '19.667001178651198', '19.821489833998555', '19.802962193617184'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/SbWqqTui-+energyswap-ens', '24hVolume': '19620607', 'btcPrice': '0.001026809470823108'}, {'uuid': 'DCrsaMv68', 'symbol': 'NEAR', 'name': 'NEAR Protocol', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/Cth83dCnl/near.png', 'marketCap': '1814357051', 'price': '2.9849041203028195', 'listedAt': 1615164591, 'tier': 1, 'change': '0.64', 'rank': 34, 'sparkline': ['2.966630713978872', '2.9738533666301143', '3.0145093539784673', '3.0239133776462745', '3.019132959136746', '3.0020612472181036', '3.009012305225228', '3.011668530247856', '3.0097250637869783', '3.0093822944683466', '3.0153849652209335', '3.0093597166508657', '2.986999584079386', '2.990540658941724', '3.0162672954495666', '3.0068026628127114', '3.000234215758183', '3.0071812792905237', '3.0028235259963028', '2.9858015784571004', '2.9848722014930456', '2.9828570976785027', '2.9862344554645195', '2.9867270086481117', '2.9897902347998464'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/DCrsaMv68+nearprotocol-near', '24hVolume': '230504948', 'btcPrice': '0.000154969311106213'}, {'uuid': 'AaQUAs2Mc', 'symbol': 'LUNC', 'name': 'Terra Classic', 'color': '#0E3CA5', 'iconUrl': 'https://cdn.coinranking.com/F-PJdF8Um/LUNA.svg', 'marketCap': '1778898015', 'price': '0.000269929836118739', 'listedAt': 1565957940, 'tier': 1, 'change': '1.62', 'rank': 35, 'sparkline': ['0.000265298221338476', '0.000265624899389116', '0.000267081514261898', '0.000268260794552709', '0.000266919411339059', '0.00026470302484104', '0.000265554231971705', '0.000265537161082865', '0.000265147446959533', '0.000263431248749569', '0.000262000765071768', '0.000260077995338229', '0.000259428328663902', '0.000258379641533165', '0.000261890711526383', '0.000261475907919132', '0.000261776052740374', '0.000262411873326807', '0.000263975057431833', '0.00026562955636176', '0.000263393464767604', '0.000263929734945088', '0.000264293827218741', '0.000265519511344094', '0.000267920717278373'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/AaQUAs2Mc+terraclassic-lunc', '24hVolume': '288222329', 'btcPrice': '1.4014132134e-8'}, {'uuid': 'QQ0NCmjVq', 'symbol': 'FLOW', 'name': 'Flow', 'color': '#9efad7', 'iconUrl': 'https://cdn.coinranking.com/xh8X8QBss/flow.png', 'marketCap': '1548098652', 'price': '1.494015298623054', 'listedAt': 1614963736, 'tier': 1, 'change': '0.60', 'rank': 36, 'sparkline': ['1.4866058878873494', '1.488433318128835', '1.4972001499727532', '1.5054181157085391', '1.4999778254497704', '1.488394061848315', '1.4930042640955252', '1.491682592488768', '1.495682397617236', '1.4941382396826404', '1.4978603568417026', '1.4945702361692126', '1.4858315112181861', '1.4847456433735788', '1.5018988516555754', '1.4973522589881598', '1.4946265474471796', '1.5030159409849195', '1.49759744785681', '1.4872102342218796', '1.4860019947729435', '1.4873182722319185', '1.487912863746499', '1.4880032191596049', '1.4926160448732846'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/QQ0NCmjVq+flow-flow', '24hVolume': '19896070', 'btcPrice': '0.000077565815275256'}, {'uuid': 'ymQub4fuB', 'symbol': 'FIL', 'name': 'Filecoin', 'color': '#0090ff', 'iconUrl': 'https://cdn.coinranking.com/vUmvv-IQA/FIL3-filecoin.svg?size=48x48', 'marketCap': '1535153926', 'price': '5.132235061140943', 'listedAt': 1602839473, 'tier': 1, 'change': '-1.09', 'rank': 37, 'sparkline': ['5.181543390744217', '5.196896326282113', '5.227354799119025', '5.228801189009791', '5.2134047554434675', '5.18868041963003', '5.194963405902611', '5.183017958721169', '5.179383223765652', '5.17240000740603', '5.175202835942727', '5.153922010312344', '5.134149803630891', '5.126223764617421', '5.160439536288186', '5.160121788290326', '5.153411620162354', '5.164873209015129', '5.157925108988809', '5.139099127952961', '5.11961412048712', '5.128650491926685', '5.122372832857552', '5.115429204532601', '5.134882082352315'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/ymQub4fuB+filecoin-fil', '24hVolume': '132055163', 'btcPrice': '0.000266453761931716'}, {'uuid': 'FEbS54wxo4oIl', 'symbol': 'VET', 'name': 'VeChain', 'color': '#4bc0fa', 'iconUrl': 'https://cdn.coinranking.com/B1_TDu9Dm/VEN.svg', 'marketCap': '1522495962', 'price': '0.022805258485620587', 'listedAt': 1533427200, 'tier': 1, 'change': '-0.93', 'rank': 38, 'sparkline': ['0.023009512657662212', '0.02304753774709044', '0.023154538514022712', '0.02320614698643712', '0.023123773267541548', '0.023016850448977583', '0.023108143653703485', '0.023135757783272076', '0.02316215813675481', '0.023120759631242407', '0.023096880698202822', '0.02304641725738726', '0.02289646774350878', '0.022891453583105972', '0.02304003760722042', '0.02300886964004927', '0.022980941210397607', '0.023050054688084295', '0.02298055454281501', '0.022862466319193312', '0.02286195396209772', '0.02286809767446637', '0.02286156016248154', '0.022817842948867614', '0.0228015795710229'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/FEbS54wxo4oIl+vechain-vet', '24hVolume': '119656768', 'btcPrice': '0.000001183996220541'}, {'uuid': 'jad286TjB', 'symbol': 'HBAR', 'name': 'Hedera', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/dSCnSLilQ/hedera.svg', 'marketCap': '1478929069', 'price': '0.06072894691712498', 'listedAt': 1568704980, 'tier': 1, 'change': '0.27', 'rank': 39, 'sparkline': ['0.060473070991671755', '0.060172885299288444', '0.06054410785484', '0.06074678837904237', '0.060586170781581794', '0.06024801900625227', '0.06052188847509759', '0.06029299408072746', '0.06022477945608857', '0.060355854786571204', '0.060792879860936844', '0.061054291796125', '0.06068830815538991', '0.06090610226011623', '0.061153740524561205', '0.06088514158179738', '0.061030858477345615', '0.06127223563023836', '0.061384777100247714', '0.06104697521273881', '0.06063386871161946', '0.06066557893582467', '0.06058820573088085', '0.06063614365030902', '0.060739802600631276'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/jad286TjB+hedera-hbar', '24hVolume': '47369877', 'btcPrice': '0.000003152906320823'}, {'uuid': 'DXwP4wF9ksbBO', 'symbol': 'HT', 'name': 'Huobi Token', 'color': '#2daadf', 'iconUrl': 'https://cdn.coinranking.com/ryFpQe0c7/ht.svg', 'marketCap': '1416558067', 'price': '6.927245074227631', 'listedAt': 1517702400, 'tier': 1, 'change': '-6.97', 'rank': 40, 'sparkline': ['7.410423227942487', '7.402751419107782', '7.396097948854609', '7.367355538923841', '7.294211239704354', '7.247300213137647', '7.240884770363452', '7.241544902222515', '7.215407483945363', '7.317114188300403', '7.275193856889543', '7.1458047961504985', '7.055889351185736', '6.987854987746826', '7.02579653620608', '7.008119787885445', '6.990637743724626', '6.889691766932263', '6.841451332855427', '6.736104858111476', '6.653199469585441', '6.655209890298203', '6.7480675726349135', '6.723047933024401', '6.812334413739443'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/DXwP4wF9ksbBO+huobitoken-ht', '24hVolume': '39906800', 'btcPrice': '0.00035964652590183'}, {'uuid': 'tEf7-dnwV3BXS', 'symbol': 'MANA', 'name': 'Decentraland', 'color': '#f47e33', 'iconUrl': 'https://cdn.coinranking.com/ph_svUzXs/decentraland(1).svg', 'marketCap': '1403336712', 'price': '0.639773230488771', 'listedAt': 1500336000, 'tier': 1, 'change': '-0.36', 'rank': 41, 'sparkline': ['0.6426894737310874', '0.6424255210768235', '0.6462894724935391', '0.6472704271222292', '0.6450687815206809', '0.6408930067152339', '0.6425264541238528', '0.6419777280140152', '0.642083406139325', '0.641456778866585', '0.6403015094109413', '0.6390034627608797', '0.6357107464283921', '0.6363850700230641', '0.6421491457194027', '0.6415748215731398', '0.6404473736483579', '0.6425056810123082', '0.6418751815898204', '0.6391751710090665', '0.638102983866446', '0.6387748511195546', '0.6384009743368873', '0.6380828132470923', '0.6398165514337987'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/tEf7-dnwV3BXS+decentraland-mana', '24hVolume': '75444832', 'btcPrice': '0.00003321554488758'}, {'uuid': 'KfWtaeV1W', 'symbol': 'FRAX', 'name': 'Frax', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/BpVNCX-NM/frax.png', 'marketCap': '1360673082', 'price': '1.0000472501636406', 'listedAt': 1615299931, 'tier': 1, 'change': '0.02', 'rank': 42, 'sparkline': ['0.9989391819857077', '1.0009133731204434', '1.0031633981665322', '1.0056977187005953', '1.0058075872839434', '1.0020288398346637', '1.0036668169977683', '1.0043383808070452', '1.0065326733214728', '1.0043729851007794', '1.0065805914288182', '1.0057229836820218', '1.0023769575278256', '1.0017713434716538', '0.9983048754072102', '0.9980927831854055', '0.999887038295716', '0.9991397280499926', '1.0003422233601573', '0.9998771859897455', '0.9998534570977216', '1.0016770495765326', '1.0025024941120915', '1.0016284205087918', '0.9998701215044888'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/KfWtaeV1W+frax-frax', '24hVolume': '1611210', 'btcPrice': '0.000051920137862184'}, {'uuid': 'aMNLwaUbY', 'symbol': 'ICP', 'name': 'Internet Computer (DFINITY)', 'color': '#00042b', 'iconUrl': 'https://cdn.coinranking.com/1uJ_RVrmC/dfinity-icp.png', 'marketCap': '1348809974', 'price': '5.025647758189688', 'listedAt': 1601555742, 'tier': 1, 'change': '1.31', 'rank': 43, 'sparkline': ['4.955027568233439', '4.941284269804198', '4.9808322932149025', '5.001991642741683', '4.975547810095801', '5.024199400645595', '5.057382585003378', '5.041842805118226', '5.02222002474725', '5.020346579958754', '5.006259499033889', '4.980069401427564', '4.952420553521131', '4.958075209735943', '5.013418584959204', '5.004524408197972', '4.998471516666852', '5.016633269036056', '4.99678134314195', '4.978704249316055', '5.002226191771894', '5.011735630155115', '5.005962743230907', '5.014514875168737', '5.03579541287081'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/aMNLwaUbY+internetcomputerdfinity-icp', '24hVolume': '34250505', 'btcPrice': '0.000260919995939478'}, {'uuid': 'omwkOTglq', 'symbol': 'EGLD', 'name': 'Elrond', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/X62ruAuZQ/Elrond.svg', 'marketCap': '1317989681', 'price': '55.6622993931249', 'listedAt': 1612524044, 'tier': 1, 'change': '-1.55', 'rank': 44, 'sparkline': ['56.289518124266074', '56.40437469579578', '56.66902970769358', '56.850167246711784', '56.578071852789236', '56.243945798433614', '56.48922508372735', '56.49021794002494', '56.65725749153038', '56.7333135823036', '56.5730183257989', '56.434012091819326', '56.237560650681885', '56.427870447603524', '56.59512332002992', '56.41834137851447', '56.10575389762748', '55.76412206065055', '55.76274497602924', '55.50083961685856', '55.15257268300208', '55.46469832123409', '55.561076102331164', '55.50960867511326', '55.68002121442513'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/omwkOTglq+elrond-egld', '24hVolume': '39419549', 'btcPrice': '0.002889857711967399'}, {'uuid': 'Z96jIvLU7', 'symbol': 'IMX', 'name': 'Immutable X', 'color': '#000000', 'iconUrl': 'https://cdn.coinranking.com/naRGT2Y_X/10603.png', 'marketCap': '1262412447', 'price': '0.6312062234965121', 'listedAt': 1649387294, 'tier': 1, 'change': '1.30', 'rank': 45, 'sparkline': ['0.6242936886161734', '0.6270560555789536', '0.6309824428327808', '0.6319142565992002', '0.6287912103386641', '0.6225719666056522', '0.6258556898082681', '0.6288913792583651', '0.6300689393911382', '0.6309791231332859', '0.6323316428078244', '0.6308551833801285', '0.6280105593506585', '0.6316877717333391', '0.6384400201941755', '0.6372133151258742', '0.635298636070332', '0.6351198684550098', '0.632615426609145', '0.6290842413969484', '0.6282243535464536', '0.6280634603225954', '0.627992640841501', '0.6277867735283784', '0.6303588304816835'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/Z96jIvLU7+immutablex-imx', '24hVolume': '16505175', 'btcPrice': '0.000032770765719364'}, {'uuid': 'fsIbGOEJWbzxG', 'symbol': 'XTZ', 'name': 'Tezos', 'color': '#2c7df7', 'iconUrl': 'https://cdn.coinranking.com/HkLUdilQ7/xtz.svg', 'marketCap': '1229153522', 'price': '1.3534152790963805', 'listedAt': 1530662400, 'tier': 1, 'change': '-0.71', 'rank': 46, 'sparkline': ['1.36088792599297', '1.3599625613124706', '1.3660795307359193', '1.3697656577703559', '1.3637718050677707', '1.3556400996799705', '1.3624630048039574', '1.3629862802502482', '1.3656361729957383', '1.3672478499154457', '1.3656538744657043', '1.3593145407872822', '1.3502856166445472', '1.3506212018955903', '1.3634878519572404', '1.3577673877649554', '1.3521537679171622', '1.35709373870423', '1.3558624225519909', '1.3504999617600535', '1.349771030342383', '1.3509329904159706', '1.3514439959358318', '1.351255103939454', '1.354614719273705'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/fsIbGOEJWbzxG+tezos-xtz', '24hVolume': '14199289', 'btcPrice': '0.000070266187786599'}, {'uuid': 'pxtKbG5rg', 'symbol': 'SAND', 'name': 'The Sandbox', 'color': '#00adef', 'iconUrl': 'https://cdn.coinranking.com/kd_vwOcnI/sandbox.png', 'marketCap': '1168501331', 'price': '0.7770994767371915', 'listedAt': 1613583024, 'tier': 1, 'change': '0.92', 'rank': 47, 'sparkline': ['0.7703437492947703', '0.770724547472596', '0.7773631847311384', '0.7809359722516857', '0.7788705989350532', '0.776493821488692', '0.7787347866259375', '0.7786691031175829', '0.7809511209049832', '0.7798671459529274', '0.7798368135775244', '0.7792078014422641', '0.7739419254548766', '0.7744077208537656', '0.7817678357526543', '0.7801006955639823', '0.7779530021155342', '0.7797997716469579', '0.7787781947337461', '0.7744386380841374', '0.7746550315521243', '0.7760920306870871', '0.7747477205646944', '0.7749246771421063', '0.7773016322987929'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/pxtKbG5rg+thesandbox-sand', '24hVolume': '55249202', 'btcPrice': '0.000040345205647257'}, {'uuid': 'Pe93bIOD2', 'symbol': 'LDO', 'name': 'Lido DAO Token', 'color': '#77cced', 'iconUrl': 'https://cdn.coinranking.com/Wp6LFY6ZZ/8000.png', 'marketCap': '1133258921', 'price': '1.4086570686061568', 'listedAt': 1627361901, 'tier': 1, 'change': '6.26', 'rank': 48, 'sparkline': ['1.3278091631174658', '1.3302058863325676', '1.343310377626516', '1.3552049746283852', '1.352154719443742', '1.3460152591809944', '1.3544215951529162', '1.3383044829847262', '1.3273627218678512', '1.3301312537567056', '1.333920535899783', '1.3331643696587918', '1.3262615487362415', '1.328483335443219', '1.3458301215810708', '1.3461457397124759', '1.3434688018752339', '1.3527690688815122', '1.3480675050432587', '1.3449089787725566', '1.3483425504150819', '1.3651533256946613', '1.3714453114375162', '1.3744657536094196', '1.3958142183497386'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/Pe93bIOD2+lidodaotoken-ldo', '24hVolume': '20797921', 'btcPrice': '0.000073134213599011'}, {'uuid': 'GSCt2y6YSgO26', 'symbol': 'CHZ', 'name': 'Chiliz', 'color': '#d05e72', 'iconUrl': 'https://cdn.coinranking.com/gTsOlSnwR/4066.png', 'marketCap': '1079342424', 'price': '0.18168078520832928', 'listedAt': 1562332440, 'tier': 1, 'change': '-0.16', 'rank': 49, 'sparkline': ['0.1818524323739211', '0.18227410422280854', '0.18374744095089926', '0.18354312511178833', '0.18200396958247614', '0.18108281257807454', '0.18221108239960096', '0.18205704639631212', '0.18235585124626988', '0.1826557485347458', '0.1823023800680324', '0.18195889514953517', '0.180101089814531', '0.18068361634611435', '0.18241593153690688', '0.1819568554869544', '0.18147988116446626', '0.18214114901351766', '0.18174526450515746', '0.1805493895032667', '0.1802250878848231', '0.180013012403102', '0.18031971543764924', '0.1803849833425367', '0.1815054304854962'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/GSCt2y6YSgO26+chiliz-chz', '24hVolume': '185067825', 'btcPrice': '0.000009432445730322'}, {'uuid': 'ixgUfzmLR', 'symbol': 'AAVE', 'name': 'Aave', 'color': '#B6509E', 'iconUrl': 'https://cdn.coinranking.com/4bpYKqV4X/AAVE.png', 'marketCap': '1075722315', 'price': '76.17318980208316', 'listedAt': 1603447311, 'tier': 1, 'change': '3.21', 'rank': 50, 'sparkline': ['73.61076018338031', '73.6011277561503', '74.2351471491496', '74.75024751810594', '74.67884333411074', '73.97670347636331', '74.05308105084637', '74.21874745141068', '74.29216379721927', '74.3792612011424', '74.65755863880729', '74.61707490054222', '74.29959182958007', '74.48092054841098', '75.6529585417904', '75.63488016917121', '75.41551331747249', '75.81453769010096', '75.83725063098944', '75.30522099618699', '75.33539162234749', '75.48614476135677', '75.40401192936721', '75.475762420926', '76.06706753059751'], 'lowVolume': False, 'coinrankingUrl': 'https://coinranking.com/coin/ixgUfzmLR+aave-aave', '24hVolume': '92820127', 'btcPrice': '0.003954735654019633'}]}}

Formatting Digital Coin example

JSON text transferred from the API in the previous cell was converted to a Python Dictionary called json. The "coins" in the dictionary contain a list of the most relevant data. Look at the code and comments to see how the original text is turned into something understandable. Additionally, there are error check to make sure we are starting the code with the expectation that the API was run correctly.

"""
This cell is dependent on valid run of API above.
- try and except code is making sure "json" was properly run above
- inside second try is code that is used to process Coin API data

Note.  Run this cell repeatedly to format data without re-activating API
"""

try:
    print("JSON data is Python type: " + str(type(json)))
    try:
        # Extracting Coins JSON status, if the API worked
        status = json.get('status')
        print("API status: " + status)
        print()
        
        # Extracting Coins JSON data, data about the coins
        data = json.get('data')
        
        # Procedural abstraction of Print code for coins
        def print_coin(c):
            print(c["symbol"], c["price"])
            print("Icon Url: " + c["iconUrl"])
            print("Rank Url: " + c["coinrankingUrl"])

        # Coins data was observed to be a list
        for coin in data['coins']:
            print_coin(coin)
            print()
            
    except:
        print("Did you insert a valid key in X-RapidAPI-Key of API cell above?")
        print(json)
except:
    print("This cell is dependent on running API call in cell above!")
JSON data is Python type: <class 'dict'>
API status: success

BTC 19261.25952935943
Icon Url: https://cdn.coinranking.com/bOabBYkcX/bitcoin_btc.svg
Rank Url: https://coinranking.com/coin/Qwsogvtv82FCd+bitcoin-btc

ETH 1306.4486927975051
Icon Url: https://cdn.coinranking.com/rk4RKHOuW/eth.svg
Rank Url: https://coinranking.com/coin/razxDUgYGNAdQ+ethereum-eth

USDT 0.9993461687488656
Icon Url: https://cdn.coinranking.com/mgHqwlCLj/usdt.svg
Rank Url: https://coinranking.com/coin/HIVsRcGKkPFtW+tetherusd-usdt

USDC 0.9999694686501251
Icon Url: https://cdn.coinranking.com/jkDf8sQbY/usdc.svg
Rank Url: https://coinranking.com/coin/aKzUVe4Hh_CON+usdc-usdc

BNB 271.51394635832514
Icon Url: https://cdn.coinranking.com/B1N19L_dZ/bnb.svg
Rank Url: https://coinranking.com/coin/WcwrkfNI4FUAe+binancecoin-bnb

XRP 0.4679981759837921
Icon Url: https://cdn.coinranking.com/B1oPuTyfX/xrp.svg
Rank Url: https://coinranking.com/coin/-l8Mn2pVlRs-p+xrp-xrp

BUSD 0.9997076248427321
Icon Url: https://cdn.coinranking.com/6SJHRfClq/busd.svg
Rank Url: https://coinranking.com/coin/vSo2fu9iE1s0Y+binanceusd-busd

ADA 0.368019149385374
Icon Url: https://cdn.coinranking.com/ryY28nXhW/ada.svg
Rank Url: https://coinranking.com/coin/qzawljRxB5bYu+cardano-ada

SOL 30.309772438515694
Icon Url: https://cdn.coinranking.com/yvUG4Qex5/solana.svg
Rank Url: https://coinranking.com/coin/zNZHO_Sjf+solana-sol

DOGE 0.05904075101089855
Icon Url: https://cdn.coinranking.com/H1arXIuOZ/doge.svg
Rank Url: https://coinranking.com/coin/a91GCGd_u96cF+dogecoin-doge

DOT 6.175847367590765
Icon Url: https://cdn.coinranking.com/RsljYqnbu/polkadot.svg
Rank Url: https://coinranking.com/coin/25W7FG7om+polkadot-dot

MATIC 0.8056199266825756
Icon Url: https://cdn.coinranking.com/WulYRq14o/polygon.png
Rank Url: https://coinranking.com/coin/uW2tk-ILY0ii+polygon-matic

SHIB 0.000010288254400056
Icon Url: https://cdn.coinranking.com/D69LfI-tm/shib.png
Rank Url: https://coinranking.com/coin/xz24e0BjL+shibainu-shib

DAI 1.0001348966248338
Icon Url: https://cdn.coinranking.com/mAZ_7LwOE/mutli-collateral-dai.svg
Rank Url: https://coinranking.com/coin/MoTuySvg7+dai-dai

TRX 0.06230350664596631
Icon Url: https://cdn.coinranking.com/behejNqQs/trx.svg
Rank Url: https://coinranking.com/coin/qUhEFk1I61atv+tron-trx

WETH 1311.0409274618196
Icon Url: https://cdn.coinranking.com/KIviQyZlt/weth.svg
Rank Url: https://coinranking.com/coin/Mtfb0obXVh59u+wrappedether-weth

UNI 6.118098383396773
Icon Url: https://cdn.coinranking.com/1heSvUgtl/uniswap-v2.svg?size=48x48
Rank Url: https://coinranking.com/coin/_H5FVG9iW+uniswap-uni

AVAX 15.843421142007257
Icon Url: https://cdn.coinranking.com/S0C6Cw2-w/avax-avalanche.png
Rank Url: https://coinranking.com/coin/dvUj0CzDZ+avalanche-avax

CAKE 4.586317311995357
Icon Url: https://cdn.coinranking.com/aRtgdw7bQ/pancakeswap-cake-logo.png
Rank Url: https://coinranking.com/coin/ncYFcP709+pancakeswap-cake

OKB 16.528895354423955
Icon Url: https://cdn.coinranking.com/xcZdYtX6E/okx.png
Rank Url: https://coinranking.com/coin/PDKcptVnzJTmN+okb-okb

ATOM 11.851454713454345
Icon Url: https://cdn.coinranking.com/HJzHboruM/atom.svg
Rank Url: https://coinranking.com/coin/Knsels4_Ol-Ny+cosmos-atom

LTC 51.51707071608999
Icon Url: https://cdn.coinranking.com/BUvPxmc9o/ltcnew.svg
Rank Url: https://coinranking.com/coin/D7B1x_ks7WhV5+litecoin-ltc

FTT 23.724765611501525
Icon Url: https://cdn.coinranking.com/WyBm4_EzM/ftx-exchange.svg
Rank Url: https://coinranking.com/coin/NfeOYfNcl+ftxtoken-ftt

ETC 23.185196497619483
Icon Url: https://cdn.coinranking.com/rJfyor__W/etc.svg
Rank Url: https://coinranking.com/coin/hnfQfsYfeIGUQ+ethereumclassic-etc

XMR 143.6876227076651
Icon Url: https://cdn.coinranking.com/Syz-oSd_Z/xmr.svg
Rank Url: https://coinranking.com/coin/3mVx2FX_iJFp5+monero-xmr

XLM 0.1130685970054593
Icon Url: https://cdn.coinranking.com/78CxK1xsp/Stellar_symbol_black_RGB.svg
Rank Url: https://coinranking.com/coin/f3iaFeCKEmkaZ+stellar-xlm

ALGO 0.3214243614679588
Icon Url: https://cdn.coinranking.com/lzbmCkUGB/algo.svg
Rank Url: https://coinranking.com/coin/TpHE2IShQw-sJ+algorand-algo

BTCB 19213.851903591163
Icon Url: https://cdn.coinranking.com/Swr_SeZio/4023.png
Rank Url: https://coinranking.com/coin/9_jH48RBW+bitcoinbep2-btcb

CRO 0.10434970048446979
Icon Url: https://cdn.coinranking.com/2o91jm73M/cro.svg
Rank Url: https://coinranking.com/coin/65PHZTpmE55b+cronos-cro

BCH 109.92687374233975
Icon Url: https://cdn.coinranking.com/By8ziihX7/bch.svg
Rank Url: https://coinranking.com/coin/ZlZpzOJo43mIo+bitcoincash-bch

WEMIX 1.9990802358622086
Icon Url: https://cdn.coinranking.com/1N84MQsoO/7548.png
Rank Url: https://coinranking.com/coin/08CsQa-Ov+wemixtoken-wemix

QNT 204.4064498806355
Icon Url: https://cdn.coinranking.com/a-i9Dl392/quant.png
Rank Url: https://coinranking.com/coin/bauj_21eYVwso+quant-qnt

ENS 19.767043766007042
Icon Url: https://cdn.coinranking.com/fmYxEUV5a/cropped-logo37-Converted-01-192x192.png
Rank Url: https://coinranking.com/coin/SbWqqTui-+energyswap-ens

NEAR 2.9849041203028195
Icon Url: https://cdn.coinranking.com/Cth83dCnl/near.png
Rank Url: https://coinranking.com/coin/DCrsaMv68+nearprotocol-near

LUNC 0.000269929836118739
Icon Url: https://cdn.coinranking.com/F-PJdF8Um/LUNA.svg
Rank Url: https://coinranking.com/coin/AaQUAs2Mc+terraclassic-lunc

FLOW 1.494015298623054
Icon Url: https://cdn.coinranking.com/xh8X8QBss/flow.png
Rank Url: https://coinranking.com/coin/QQ0NCmjVq+flow-flow

FIL 5.132235061140943
Icon Url: https://cdn.coinranking.com/vUmvv-IQA/FIL3-filecoin.svg?size=48x48
Rank Url: https://coinranking.com/coin/ymQub4fuB+filecoin-fil

VET 0.022805258485620587
Icon Url: https://cdn.coinranking.com/B1_TDu9Dm/VEN.svg
Rank Url: https://coinranking.com/coin/FEbS54wxo4oIl+vechain-vet

HBAR 0.06072894691712498
Icon Url: https://cdn.coinranking.com/dSCnSLilQ/hedera.svg
Rank Url: https://coinranking.com/coin/jad286TjB+hedera-hbar

HT 6.927245074227631
Icon Url: https://cdn.coinranking.com/ryFpQe0c7/ht.svg
Rank Url: https://coinranking.com/coin/DXwP4wF9ksbBO+huobitoken-ht

MANA 0.639773230488771
Icon Url: https://cdn.coinranking.com/ph_svUzXs/decentraland(1).svg
Rank Url: https://coinranking.com/coin/tEf7-dnwV3BXS+decentraland-mana

FRAX 1.0000472501636406
Icon Url: https://cdn.coinranking.com/BpVNCX-NM/frax.png
Rank Url: https://coinranking.com/coin/KfWtaeV1W+frax-frax

ICP 5.025647758189688
Icon Url: https://cdn.coinranking.com/1uJ_RVrmC/dfinity-icp.png
Rank Url: https://coinranking.com/coin/aMNLwaUbY+internetcomputerdfinity-icp

EGLD 55.6622993931249
Icon Url: https://cdn.coinranking.com/X62ruAuZQ/Elrond.svg
Rank Url: https://coinranking.com/coin/omwkOTglq+elrond-egld

IMX 0.6312062234965121
Icon Url: https://cdn.coinranking.com/naRGT2Y_X/10603.png
Rank Url: https://coinranking.com/coin/Z96jIvLU7+immutablex-imx

XTZ 1.3534152790963805
Icon Url: https://cdn.coinranking.com/HkLUdilQ7/xtz.svg
Rank Url: https://coinranking.com/coin/fsIbGOEJWbzxG+tezos-xtz

SAND 0.7770994767371915
Icon Url: https://cdn.coinranking.com/kd_vwOcnI/sandbox.png
Rank Url: https://coinranking.com/coin/pxtKbG5rg+thesandbox-sand

LDO 1.4086570686061568
Icon Url: https://cdn.coinranking.com/Wp6LFY6ZZ/8000.png
Rank Url: https://coinranking.com/coin/Pe93bIOD2+lidodaotoken-ldo

CHZ 0.18168078520832928
Icon Url: https://cdn.coinranking.com/gTsOlSnwR/4066.png
Rank Url: https://coinranking.com/coin/GSCt2y6YSgO26+chiliz-chz

AAVE 76.17318980208316
Icon Url: https://cdn.coinranking.com/4bpYKqV4X/AAVE.png
Rank Url: https://coinranking.com/coin/ixgUfzmLR+aave-aave

Go deeper into APIs

Web Development vs Jupyter Notebook. A notebook is certainly a great place to start. But, for your end of Trimester project we want you to build the skill to reference and use APIs within your Project. Here are some resources to get you started with this journey.

Hacks

Find and use an API as part of your project. An API and a little coding logic will be a big step toward getting meaningful data for a project. There are many API providers, find one that might work for your project to complete this hack. When picking an API you are looking for something that will work with either JavaScript Fetch or Python Request. Here are some samples, these are not qualified in any way.

Show API and format results in either Web Page or Jupyter Notebook. Ultimately, I will expect that we do APIs in backend (Python/Flask). However, for this Hack you can pick your preference. We will discuss pros and cons in next API tech talk.