Connections
List connections
All connections of a space.
GET
https://app.elunos.ai/api/v1/spaces/{space}/connectionsA connection is the address of an endpoint that tools call during a conversation, together with its credentials. The API never returns the credentials; auth_status only shows whether any are stored.
Path parameters
spacestringPflichtSlug of the space, e.g. `praxis-mueller`. Returned by `GET /spaces`.
Query parameters
pageintegerPage, starting at 1. Default 1.
per_pageintegerEntries per page. Default 50, maximum 200.
Example
curl https://app.elunos.ai/api/v1/spaces/praxis-mueller/connections \
-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"
}
],
"meta": {
"page": 1,
"per_page": 50,
"total": 1,
"next_page": null
}
}kind:custom(your own endpoint),connector(a ready-made integration such as a calendar or CRM, named inconnector) ormodule(a built-in platform module).auth_status:configured,missingorerror.tool_count: how many tools use this connection.