# Get agent configuration Returns the current agent configuration. This endpoint allows you to retrieve the complete agent configuration that is currently loaded in memory. This includes all settings such as: - Agent description and metadata - LLM configurations - Tool definitions - Memory settings - Other agent-specific parameters The configuration returned is the actual configuration being used by the agent, including any updates that have been applied via the PUT /agent/config endpoint. Endpoint: GET /core/v1/agent/config Version: v1 Security: APIKeyHeader ## Response 200 fields (application/json): - `configuration` (object, required) Current agent configuration - `timestamp` (string) Configuration retrieval timestamp - `version` (any) Configuration version (if applicable) ## Response 401 fields (application/json): - `body` (string, required) Error message or description - `status_code` (integer, required) HTTP status code Example: 400 - `details` (any) Additional error details if available ## Response 403 fields (application/json): - `body` (string, required) Error message or description - `status_code` (integer, required) HTTP status code Example: 400 - `details` (any) Additional error details if available ## Response 500 fields (application/json): - `body` (string, required) Error message or description - `status_code` (integer, required) HTTP status code Example: 400 - `details` (any) Additional error details if available