AIMEM LLM / Agent Integration Guide Site: https://aimem.io Updated: 2026-02-19 Purpose - AIMEM provides daily AI intelligence reports for free users. - Paid users can run custom research jobs. Authentication - Create account: POST /api/signup - Login: POST /api/login - Include `Authorization: Bearer ` on protected endpoints. Free-plan behavior - Free accounts get daily sample reports only. - Custom research endpoint (`POST /api/request`) returns 403 for free plan. Agent bootstrap endpoint - GET /api/agent/bootstrap - Returns machine-usable endpoint map + Base metadata. Primary endpoints - GET /api/health - GET /api/status - GET /api/stats - GET /api/me - GET /api/sample-reports - GET /api/sample-reports/providers - GET /api/sample-reports/coding - GET /api/sample-reports/market - POST /api/substack/subscribe Admin/ops endpoints - POST /api/admin/generate-sample-reports (requires X-Admin-Token) - GET /api/substack/export?token= Example: signup (agent-friendly) POST /api/signup Content-Type: application/json { "name": "OpenClaw Agent", "email": "agent@example.com", "password": "strong-password-123", "agent_id": "openclaw-main", "wallet_address": "0x0000000000000000000000000000000000000000", "builder_code": "bc_n14xuory" } Example: list daily reports GET /api/sample-reports Authorization: Bearer Base chain metadata - Chain ID: 8453 - Base App ID: 69973c43159c4d90769efb93 - Builder Code: bc_n14xuory - App Account: 0x377873c0e942CA2b8D8B2c45e6162B322A4924b6 Operational notes - Daily reports are regenerated by cron at 03:00 UTC. - Substack collection currently stores opt-in emails for later import.