Get Top Active Agents
GET
/api/agents/top_active_agents
const url = 'https://example.com/api/agents/top_active_agents';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/agents/top_active_agents \ --header 'Authorization: Bearer <token>'Top 5 agents by trace count (last 30 days).
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example