# Get wabee AI agent metadata Returns metadata information about the agent configuration, including its description, capabilities and conversation starters. Endpoint: GET /core/v1/metadata Version: v1 Security: APIKeyHeader ## Response 200 fields (application/json): - `body` (object, required) The agent metadata - `body.id` (string, required) Agent unique identifier Example: "agent-123-xyz" - `body.name` (string, required) Agent name Example: "Sales Assistant" - `body.description` (string, required) Agent description Example: "An AI assistant to help with sales tasks." - `body.uri_id` (string, required) Agent URI identifier Example: "sales-assistant" - `body.conversation_starters` (array) List of conversation starter prompts - `body.conversation_starters.name` (string, required) Unique name/identifier for the conversation starter Example: "market_research" - `body.conversation_starters.prompt` (string, required) The prompt text for this conversation starter Example: "Analyze current market trends" ## 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