Join our community of builders on

Telegram!Telegram

List plugins.

GET
/api/v1/plugins
AuthorizationBearer <token>

In: header

Query Parameters

page?integer

Page number for pagination (starts at 1)

Range0 <= value
per_page?integer

Number of items per page (default: 10)

Range0 <= value

Response Body

curl -X GET "https://loading/api/v1/plugins?page=0&per_page=0"
{
  "data": {
    "items": [
      {
        "allow_get_invocation": true,
        "config": {
          "property1": null,
          "property2": null
        },
        "emit_logs": true,
        "emit_traces": true,
        "forward_logs": true,
        "id": "string",
        "path": "string",
        "raw_response": true,
        "timeout": 0
      }
    ],
    "page": 0,
    "per_page": 0,
    "total": 0
  },
  "error": "string",
  "metadata": {
    "logs": [
      {
        "level": "log",
        "message": "string"
      }
    ],
    "traces": [
      null
    ]
  },
  "pagination": {
    "current_page": 0,
    "per_page": 0,
    "total_items": 0
  },
  "success": true
}
{
  "data": null,
  "error": "Bad Request",
  "success": false
}
{
  "data": null,
  "error": "Unauthorized",
  "success": false
}
{
  "data": null,
  "error": "Plugin with ID plugin_id not found",
  "success": false
}
{
  "data": null,
  "error": "Too Many Requests",
  "success": false
}
{
  "data": null,
  "error": "Internal Server Error",
  "success": false
}