Skip to main content
GET
/
providers
/
installed
List Installed
curl --request GET \
  --url https://api.example.com/providers/installed
[
  {
    "prefix": "<string>",
    "name": "<string>",
    "installed_version": "<string>",
    "installed_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "canonical": "<string>",
    "current_version": "<string>",
    "upgrade_policy": "manual",
    "resource_tier": "standard",
    "config": {},
    "health_message": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Successful Response

prefix
string
required
name
string
required
installed_version
string
required
installed_at
string<date-time>
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
lifecycle_state
enum<string>
required

Lifecycle state of a ProviderInstallation.

Mirrors the resource lifecycle pattern: a single linear state owned by the installation row that platform workers transition forward. Distinct from :class:DeploymentStatus, which reflects the observed state of the underlying kubernetes Deployment.

States: PENDING: Installation row created; no deploy attempt yet. PROCESSING: Deploy in flight (artifact apply or upgrade running). READY: Provider self-registered and is reachable. FAILED: Deploy or registration failed terminally. DELETING: Uninstall in progress; row will be removed when done.

Available options:
pending,
processing,
ready,
failed,
deleting
health
enum<string>
required
Available options:
healthy,
degraded
canonical
string
required
read-only

Slash-joined prefix/name canonical string of the owning provider.

Returns: Display form of the provider identity this installation targets.

current_version
string | null
upgrade_policy
enum<string>
default:manual

How a tenant wants installed providers to be upgraded.

Available options:
auto,
manual
resource_tier
enum<string>
default:standard

Resource allocation tier for an installed provider.

Available options:
free,
standard,
performance
config
Config · object
health_message
string | null