Skip to main content
GET
/
api
/
v1
/
plugins
/
{author}
/
{plugin_name}
Get Plugin Details
curl --request GET \
  --url http://localhost:5300/api/v1/plugins/{author}/{plugin_name} \
  --header 'Authorization: Bearer <token>'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "plugin": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Can be either a user JWT token or an API key. Example: Authorization: Bearer <token_or_key>

Path Parameters

author
string
required

Plugin author

plugin_name
string
required

Plugin name

Response

200 - application/json

Success

code
integer
Example:

0

msg
string
Example:

"ok"

data
object