Quickstart
Copy-pasteable quickstart examples for the growthepie API in curl, Python, and JavaScript.
Key Facts
curl
curl -s https://api.growthepie.com/v1/export/txcount.jsonPython
import requests
url = "https://api.growthepie.com/v1/export/txcount.json"
response = requests.get(url, timeout=30)
response.raise_for_status()
rows = response.json()
print(f"rows={len(rows)}")
print(rows[0])JavaScript / TypeScript
Example Response
Real Task: Fetch One Chain's Transaction Count History
FAQ
What should I fetch before choosing an origin_key?
origin_key?When should I use fundamentals.json instead?
fundamentals.json instead?Related Pages
Last updated
