Skip to main content
Infrastructure/Agent Plugins
GETAgentSince 1.0SynchronousAuth Required

GetPlugin

Retrieve a single plugin by its unique identifier

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • pluginIdStringRequired

    Unique identifier of the plugin to retrieve

Responses

200 OK

On success, this API returns the following response structure.

  • idString

    Unique identifier of the plugin

    Example: plugin-001-abc

  • nameString

    Human-readable name of the plugin

    Example: nginx-log-collector

  • versionString

    Version of the plugin package

    Example: 2.1.0

  • pluginTypeString

    Plugin type category (e.g. log, metric, trace)

    Example: log

  • artifactUrlString

    Download URL of the plugin binary artifact

    Example: https://artifacts.example.com/plugins/nginx-log-collector-2.1.0.tar.gz

  • checksumString

    SHA256 checksum of the plugin artifact

    Example: sha256:abc123def456

  • configSchemaString

    JSON schema string for plugin configuration

    Example: {}

  • pluginRuntimeString

    Runtime environment required by the plugin (e.g. go, python)

    Example: go

  • registeredAtString

    Registered at

    Example: 2026-01-15T08:00:00Z

Endpoint

GET/api/v1/plugins/{pluginId}

/api/v1/plugins/{pluginId}

Operation ID

GetPlugin

Permalink

Request Example

curl -X GET '{host}/api/v1/plugins/{pluginId}' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "id": "plugin-001-abc",
  "name": "nginx-log-collector",
  "version": "2.1.0",
  "pluginType": "log",
  "artifactUrl": "https://artifacts.example.com/plugins/nginx-log-collector-2.1.0.tar.gz",
  "checksum": "sha256:abc123def456",
  "configSchema": "{}",
  "pluginRuntime": "go"
}

Change History

This API has no change history records yet.

View all change history