Skip to main content
GET
/
services
List services
curl --request GET \
  --url http://localhost:9371/services
{
  "services": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "hash": "<string>",
      "source": "<string>",
      "adapter": "<string>",
      "enabled": true,
      "stale": true,
      "effectivelyEnabled": true
    }
  ]
}

Query Parameters

query
string

Free-text query used to match service id, name, and description.

enabled
enum<string>

Enabled-state filter. Omit to return all services.

Available options:
true,
false
stale
enum<string>

Stale-state filter. true = stale only, false = fresh only. Omit to return all services.

Available options:
true,
false

Response

Matching services.

Collection wrapper for service listings.

services
object[]
required

Services that match the current query filters.

Last modified on July 1, 2026