Skip to main content
POST
/
agent_creation
/
extract_prompts
Extract Agent Prompts
curl --request POST \
  --url https://api.eden.art/agent_creation/extract_prompts \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "session_id": "<string>",
  "agent_name": "<string>"
}'
{
  "agent_instructions": "<string>",
  "agent_description": "<string>",
  "memory_instructions": "<string>",
  "cost": 123
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
session_id
string
required
agent_name
string

Response

200 - */*

Default Response

agent_instructions
string
required
agent_description
string
required
memory_instructions
string
required
cost
number
required
I