public

GET /v1/plugins/{slug}

One plugin's current release.

All public endpoints

Authentication

Send an API key as a bearer token. This endpoint does not state a specific permission in the specification, so give your key the least it needs and check the response rather than assuming.

This endpoint takes no organisation id. Your key already identifies the organisation it belongs to, and the response is scoped to it.

Try it

Replace anything in angle brackets with your own values, and the key placeholder with a key from your dashboard.

curl -X GET https://api.zinndigital.com/v1/plugins/{slug} \
  -H "Authorization: Bearer zdk_live_…"

Signed in? The API console in your dashboard fills in your real organisation id and your own key, and runs the request against the live API so you can see the actual response. Open this endpoint in the API console

Details

Public and unauthenticated. A plugin we publish no release of is a `404`.

Parameters

NameTypeRequiredWhat it is
slug (path)stringYesThe plugin's directory name and text domain, e.g. `zinn-cache`.

Response

NameTypeRequiredWhat it is
kindstring<wordpress_plugin, whmcs_module, hostbill_module, generic_client>YesWhat this is, and therefore where it is installed. `wordpress_plugin` goes in `wp-content/plugins`; `whmcs_module` in a WHMCS install's `modules/servers/`; `hostbill_module` in…
slugstringYesThe archive's directory name, e.g. `zinn-cache` or `zinn-whmcs`.
namestringYes
versionstringYes
package_sha256stringYesLowercase hex SHA-256 of the archive. The value `downloadPlugin` returns in `X-Zinn-Package-SHA256`, and the one the plugin's own updater checks a download against before WordPr…
package_bytesintegerYes
requires_wpstringNo
requires_phpstringNo
tested_wpstringNoThe WordPress version this release was installed and activated against before it was published — a real test on a real install, not an estimate. Empty means we have not stated o…
changelogstringNo
homepagestringNo
distributionstring<public, app-only>NoWho may download this plugin. `public` — anyone, no account needed, and it is also listed on https://zinndigital.com/wordpress-plugins. `app-only` — signed-in customers only; it…
published_atstringNo

Errors this endpoint can return

404 · 429