Spaces
Get space
One space with defaults, models and conversation variables.
GET
https://app.elunos.ai/api/v1/spaces/{space}Returns one space with everything you need to configure agents: the defaults, the available models and the variables a conversation carries.
Path parameters
spacestringPflichtSlug of the space, e.g. `praxis-mueller`. Returned by `GET /spaces`.
Example
curl https://app.elunos.ai/api/v1/spaces/praxis-mueller \
-H "Authorization: Bearer np_xxxxxxxx"Response
{
"data": {
"id": "0199a1e0-9b8a-7c6d-8e5f-4a3b2c1d0e9f",
"slug": "praxis-mueller",
"name": "Praxis Dr. Müller",
"role": "admin",
"defaults": {
"voice_id": "0199a1f0-3c2b-7d1e-9a8b-7c6d5e4f3a21",
"model": "standard",
"language": "de"
},
"llm_options": [
{
"id": "standard",
"label": "Standard",
"description": "Schnell und günstig, für die meisten Gespräche."
},
{
"id": "premium",
"label": "Premium",
"description": "Für Schritte, die abwägen müssen."
}
],
"conversation_variables": [
{
"name": "caller_number",
"description": "Rufnummer des Anrufers"
}
],
"created_at": "2026-08-02T09:00:00+02:00",
"updated_at": "2026-09-21T10:15:00+02:00"
}
}llm_options: the models you can assign to an agent throughmodel. Theidis what counts.conversation_variables: values every conversation carries. A tool can pass them on as a parameter withfrom: variable, see Recipes.role: your role in this space.