POST
/
memories
/
start-ingestion
curl --request POST \
  --url https://api.duohub.ai/memories/start-ingestion \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "memoryID": "mem-123"
}'
{
  "status": "success",
  "message": "Sample batch processing started",
  "data": {
    "tokenMetrics": {
      "tokensForIngestion": 5000,
      "tokensRemaining": 95000,
      "totalTokenLimit": 100000
    },
    "sampleCount": 10
  }
}

Authorizations

X-API-Key
string
header
required

Your duohub API key. Type: str

Body

application/json
memoryID
string
required

ID of the memory to start ingestion for

Response

200
application/json
Ingestion started successfully
status
enum<string>
required
Available options:
success
message
string
required

Success message

data
object
required