---
title: "Get Agent Overview"
method: GET
path: "/agents/{agent_id}/overview"
tags: ["agents"]
---

# Get Agent Overview

`GET /agents/{agent_id}/overview`

Combined agent detail for the overview page.

Returns agent + api_key + mesh_status + connector_count + tool_count
in a single request, replacing 5 separate calls.

## Path parameters

- `agent_id` string, uuid, required

## Response `200`

Successful Response

- AgentOverviewResponse — Combined agent detail for the overview page — one request instead of 5.
  - `agent` AgentResponse, required — Agent response with all fields.
    - `name` string, required
    - `description` string, nullable
    - `avatar_url` string, nullable
    - `slug` string, nullable
    - `id` string, uuid, required
    - `space_id` string, uuid, required
    - `created_by` string, uuid, required
    - `character_id` string, uuid, nullable
    - `instructions` string, nullable
    - `deployment_config` object, required
    - `skill_template_ids` unknown[]
      - unknown
    - `skill_pack_ids` string[]
    - `api_key_prefix` string, nullable
    - `is_published` boolean, required
    - `is_active` boolean, required
    - `total_conversations` integer, required
    - `total_messages` integer, required
    - `avg_satisfaction` number, nullable
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `published_at` string, date-time, nullable
    - `character_name` string, nullable
    - `channel_count` integer
    - `mesh_sync_status` string, nullable
  - `api_key` string, nullable
  - `mesh_status` MeshStatus — Nova mesh routing status for a published agent.
    - `is_registered` boolean
    - `circuit_breaker` string, nullable
    - `last_synced_at` string, date-time, nullable
  - `connector_count` integer
  - `tool_count` integer

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/meganova/apis/fastapi.md) · [All operations](https://skmtc.net/meganova/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/meganova/fastapi/revisions/2b2bab8b9017/schema)
