Skip to main content
GET
/
api
/
v3
/
agents
/
{agent_id}
/
prompt
Get Agent System Prompt
curl --request GET \
  --url https://api.nugen.in/api/v3/agents/{agent_id}/prompt \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "system_prompt": "You are a helpful assistant that answers questions about our products.",
    "model": "nugen-flash-instruct",
    "temperature": 0.7,
    "agent_name": "customer_support_bot",
    "agent_description": "An agent designed to handle customer support queries"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string
required

Response

Returns the complete system prompt and configuration for a specific agent, including instructions, demonstrations, and model settings

Response model for agent system prompt endpoint.

data
AgentPromptData · object
required

Agent prompt data model