This web app uses JavaScript for the interactive documentation page. For agents,
crawlers, and non-JavaScript readers, use these static Markdown files instead.
REST API Integration
Base URL: https://plugin.human-like.me
Authentication: send x-api-key with an API key created in Dashboard - API Keys.
Search Memory
POST /api/plugin/v1/search/memory
curl -X POST https://plugin.human-like.me/api/plugin/v1/search/memory \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"query": "What does the user prefer?",
"user_id": "user_001",
"memory_limit_number": 5,
"min_score": 0.1
}'
Add Memory
POST /api/plugin/v1/add/message
curl -X POST https://plugin.human-like.me/api/plugin/v1/add/message \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"conversation_id": "conv_001",
"user_id": "user_001",
"messages": [
{"role": "user", "content": "I prefer dark mode for all interfaces"},
{"role": "assistant", "content": "Got it, I will remember your dark mode preference!"}
],
"tags": ["preference"],
"async_mode": true
}'