blob: 80deb5d23511f0e3cfce431261f29b9677ec7a90 (
plain)
1
2
3
4
5
6
7
8
9
|
import requests
url = "https://data.alpaca.markets/v1beta3/crypto/us/quotes?limit=1000&sort=asc"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)
|