import Reminix from '@reminix/sdk';
const client = new Reminix({
apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const agent of client.agents.list()) {
console.log(agent.id);
}{
"data": [
{
"id": "<string>",
"projectId": "<string>",
"name": "<string>",
"type": "<string>",
"status": "active",
"config": {
"provider": "openai",
"model": "gpt-4o",
"systemPrompt": "You are a helpful assistant.",
"tools": [
"search-web"
],
"maxIterations": 10,
"memory": {
"enabled": true
},
"knowledgeBase": {
"enabled": true,
"collectionIds": [
"coll_abc123"
]
}
},
"description": "<string>",
"input": {
"type": "<string>",
"title": "<string>",
"description": "<string>",
"default": "<unknown>",
"enum": [
"<unknown>"
],
"properties": {},
"required": [
"<string>"
],
"items": "<unknown>"
},
"output": {
"type": "<string>",
"title": "<string>",
"description": "<string>",
"default": "<unknown>",
"enum": [
"<unknown>"
],
"properties": {},
"required": [
"<string>"
],
"items": "<unknown>"
},
"canStream": true,
"canChat": true,
"discoveredAt": "<string>",
"createdBy": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>",
"hasMore": true
}List all agents in the project with optional filtering by type and status.
import Reminix from '@reminix/sdk';
const client = new Reminix({
apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const agent of client.agents.list()) {
console.log(agent.id);
}{
"data": [
{
"id": "<string>",
"projectId": "<string>",
"name": "<string>",
"type": "<string>",
"status": "active",
"config": {
"provider": "openai",
"model": "gpt-4o",
"systemPrompt": "You are a helpful assistant.",
"tools": [
"search-web"
],
"maxIterations": 10,
"memory": {
"enabled": true
},
"knowledgeBase": {
"enabled": true,
"collectionIds": [
"coll_abc123"
]
}
},
"description": "<string>",
"input": {
"type": "<string>",
"title": "<string>",
"description": "<string>",
"default": "<unknown>",
"enum": [
"<unknown>"
],
"properties": {},
"required": [
"<string>"
],
"items": "<unknown>"
},
"output": {
"type": "<string>",
"title": "<string>",
"description": "<string>",
"default": "<unknown>",
"enum": [
"<unknown>"
],
"properties": {},
"required": [
"<string>"
],
"items": "<unknown>"
},
"canStream": true,
"canChat": true,
"discoveredAt": "<string>",
"createdBy": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>",
"hasMore": true
}API Key or Personal Access Token (PAT). When using PAT, include X-Project header.
Number of agents to return
1 <= x <= 100Cursor for pagination
Filter by agent type (managed, python, typescript, python-langchain, etc.)
Filter by agent status
active, inactive