Skip to main content
import requests
import json

url = "https://api.stack-ai.com/documents/{org_id}/{flow_id}/{node_id}/{user_id}"
headers = {
"Authorization": "Bearer <your-private-key>",
"Content-Type": "application/json"
}

response = requests.get(url, headers=headers)

print(response.json())