Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.t0ken.ai/llms.txt

Use this file to discover all available pages before exploring further.

The Tasks API allows you to check the status of asynchronous memory processing operations.

Get Task Status

Check the processing status of a memory creation task.
task_id
string
required
The task ID returned when creating a memory

Request

curl https://t0ken.ai/api/v1/tasks/abc123def456 \
  -H "X-API-Key: omx_your_api_key"

Response

{
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "completed",
    "memory_id": "mem_123abc",
    "cognitive_sector": "semantic",
    "importance_score": 0.85,
    "created_at": "2026-02-13T10:00:00Z",
    "completed_at": "2026-02-13T10:00:05Z"
  }
}

Task Statuses

StatusDescription
pendingTask is queued for processing
processingAI is currently classifying the memory
completedMemory has been successfully stored
failedProcessing failed (check error message)

Polling Strategy

For real-time applications, poll the task status every 1-2 seconds:
import time

def wait_for_memory(task_id, api_key, timeout=30):
    start = time.time()
    while time.time() - start < timeout:
        response = requests.get(
            f"https://t0ken.ai/api/v1/tasks/{task_id}",
            headers={"X-API-Key": api_key}
        )
        data = response.json()["data"]
        
        if data["status"] == "completed":
            return data["memory_id"]
        elif data["status"] == "failed":
            raise Exception(f"Task failed: {data.get('error')}")
        
        time.sleep(1)
    
    raise TimeoutError("Task processing timeout")