Budgeting & Planning
The YNAB API is a REST-based, JSON-formatted, HTTPS-secured platform enabling developers to build applications that interact with YNAB budgets.
import requests
url = "https://api.ynab.com/v1/budgets"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())Last 50 checks (10 min intervals)