Skip to main content
GET
/
api
/
agents
/
{id}
Get Agent
curl --request GET \
  --url https://api.example.com/api/agents/{id}

Request

curl "https://app.orova.ai/api/agents/AGENT_ID" \
  -H "x-api-key: YOUR_API_KEY"

Path parameters

ParameterTypeDescription
idstringAgent ID

Response

{
  "_id": "agent_id",
  "name": "Support Agent",
  "llm_provider": "openai",
  "llm_model": "gpt-4o-mini",
  "tts_provider": "elevenlabs",
  "tts_voice_id": "voice_id",
  "stt_provider": "deepgram",
  "system_prompt": "You are a helpful support agent...",
  "first_message": "Hi! How can I help you today?",
  "recording_enabled": true,
  "ambience_enabled": false,
  "workspaceId": "WORKSPACE_ID",
  "createdAt": "2025-01-01T00:00:00.000Z",
  "updatedAt": "2025-01-01T00:00:00.000Z"
}