import requests
response = requests.post(
"https://memoryapi-production.up.railway.app/upload",
headers={"X-API-Key": "xinobi", "Content-Type": "application/json"},
json={
"unique_id": "your-bucket-id",
"text": "Had coffee with Sarah, discussed the new project",
"tags": ["meeting", "project"]
}
)