Spaces

List agent templates

Templates an agent can be created from.

GEThttps://app.elunos.ai/api/v1/spaces/{space}/agent-templates

Returns the templates you can pass as template_id when creating an agent. A template brings behavior and flow for a specific use, such as appointment booking or an online shop.

Path parameters

spacestringPflicht

Slug of the space, e.g. `praxis-mueller`. Returned by `GET /spaces`.

Example

curl https://app.elunos.ai/api/v1/spaces/praxis-mueller/agent-templates \
  -H "Authorization: Bearer np_xxxxxxxx"

Response

{
  "data": [
    {
      "id": "ecommerce_v1",
      "name": "Onlineshop",
      "description": "Beantwortet Fragen zu Produkten, Bestellungen und Rücksendungen.",
      "industry": "ecommerce",
      "preview": {
        "first_message": "Hallo, wie kann ich helfen?",
        "blocks": [
          "role",
          "tone",
          "task",
          "limits"
        ]
      }
    }
  ]
}