List Agents
Retrieves a list of available agents for the authenticated user.
- URL:
/process/list_agents
- Method: GET
- Headers:
- Content-Type: application/json
- X-API-Key: YOUR_API_KEY_HERE
Example Request
import requests
BASE_URL = "https://advantar.ai/process"
API_KEY = "YOUR_API_KEY_HERE"
headers = {
"Content-Type": "application/json",
"X-API-Key": API_KEY
}
response = requests.get(
f"{BASE_URL}/process/list_agents",
headers=headers
)
print(response.json())
Example Response
{
"status": "success",
"agents": ["Agent1", "Agent2", "Agent3"],
"user_id": "user123"
}