Connections
Get connection
One connection with the tools that use it.
GET
https://app.elunos.ai/api/v1/spaces/{space}/connections/{connection}Returns one connection plus the tools that run through it.
Path parameters
spacestringPflichtSlug of the space, e.g. `praxis-mueller`. Returned by `GET /spaces`.
connectionuuidPflichtID of the connection.
Example
curl https://app.elunos.ai/api/v1/spaces/praxis-mueller/connections/0199a3c3-5b6c-7a02-b4d1-9e8f7a6c5d32 \
-H "Authorization: Bearer np_xxxxxxxx"Response
{
"data": {
"id": "0199a3c3-5b6c-7a02-b4d1-9e8f7a6c5d32",
"name": "Praxissoftware",
"kind": "custom",
"connector": null,
"module": null,
"base_url": "https://api.praxis-mueller.de/v2",
"auth_status": "configured",
"tool_count": 3,
"created_at": "2026-09-01T08:40:00+02:00",
"updated_at": "2026-09-01T08:40:00+02:00",
"tools": [
{
"id": "0199a3c4-1f2a-7c55-8e10-6b7d9a3e2f11",
"slug": "find_slots",
"name": "Freie Termine suchen"
}
]
}
}