You're using your own API keys. Upgrade to Pro for managed models and cloud features.
Playground
Two ends of the API in one place. Paste raw text on the left to see what gets extracted; type a query on the right to see what gets recalled.
Extract
POST /v1/extract · runs a small LLM on your text and returns typed memory candidates.
Results will appear here...
Recall
POST /v1/recall · semantic search across your memories. Returns ranked matches.
Matches will appear here...
cURL equivalents
# extract (does not store)
curl -X POST $NC_HOST/v1/extract \
-H "Authorization: Bearer $NC_KEY" \
-d '{"text": "..."}'
# add a memory (extract + embed + store)
curl -X POST $NC_HOST/v1/memories \
-H "Authorization: Bearer $NC_KEY" \
-d '{"text": "...", "end_user_id": "user_42"}'
# recall (semantic search)
curl -X POST $NC_HOST/v1/recall \
-H "Authorization: Bearer $NC_KEY" \
-d '{"query": "...", "end_user_id": "user_42", "top_k": 5}'