Agent SwarmAgent Swarm

Memory

Memory API endpoints

POST
/api/memory/index

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "http://localhost:3013/api/memory/index" \  -H "Content-Type: application/json" \  -d '{    "content": "string",    "name": "string",    "scope": "agent",    "source": "manual"  }'
Empty
Empty
POST
/api/memory/re-embed

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "http://localhost:3013/api/memory/re-embed" \  -H "Content-Type: application/json" \  -d '{}'
Empty
POST
/api/memory/search

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "http://localhost:3013/api/memory/search" \  -H "Content-Type: application/json" \  -d '{    "query": "string"  }'
Empty
Empty