Check ingest job
Poll the status of an ingest job. Returns job status and the resulting memory when complete.
GET
/api/v1/memories/jobs/{job_id}API Key
Stored locally, never sent to servers
Check ingest job
const options = { method: 'GET', headers: {'X-API-Key': 'mb_live_xxx'},};fetch('https://api.mem-brain.io/api/v1/memories/jobs/{job_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));{ "job_id": "job_abc123", "status": "completed", "memory_id": "mem_xyz789", "result": { "status": "success", "memory_id": "mem_xyz789", "action": "created" }}