Title: VerCheck API
Author: Roland Bende
Published: <strong>7 Giugno 2025</strong>
Last modified: 11 Luglio 2026

---

Ricerca i plugin

![](https://ps.w.org/vercheck-api/assets/icon-256x256.png?rev=3307815)

# VerCheck API

 Di [Roland Bende](https://profiles.wordpress.org/rbende/)

[Scarica](https://downloads.wordpress.org/plugin/vercheck-api.1.2.0.zip)

 * [Dettagli](https://it.wordpress.org/plugins/vercheck-api/#description)
 * [Recensioni](https://it.wordpress.org/plugins/vercheck-api/#reviews)
 * [Sviluppo](https://it.wordpress.org/plugins/vercheck-api/#developers)

 [Supporto](https://wordpress.org/support/plugin/vercheck-api/)

## Descrizione

This plugin adds a custom REST API endpoint that returns information about the current
versions of the WordPress core, active themes, and active plugins.

Useful for remote WordPress site version monitoring & logging, CI/CD checks, and
automated update workflows.

Both endpoints require authentication via a Bearer token.

**Endpoint 1: Status** — outdated items only

 * **HTTP method:** `GET`
 * **API endpoint:** `/wp-json/vercheck-api/v1/status`

Returns only items that have available updates:
 – WordPress core update status.–
A list of plugins with available updates. – A list of themes with available updates.

**Endpoint 2: Audit** — full inventory

 * **HTTP method:** `GET`
 * **API endpoint:** `/wp-json/vercheck-api/v1/audit`

Returns a complete inventory of everything installed:
 – WordPress core version 
info. – All installed themes (active and inactive) with version and update info.–
All installed plugins (active and inactive) with version and update info.

**Endpoint 3: Environment** — server version info

 * **HTTP method:** `GET`
 * **API endpoint:** `/wp-json/vercheck-api/v1/environment`

Returns the current runtime environment versions:
 – PHP version. – MySQL version.–
WordPress version. – VerCheck API plugin version.

**Example response — /v1/status:**

    ```
      {
        "core": {
          "current_version": "6.4.3",
          "new_version": "6.5",
          "is_outdated": true
        },
        "outdated_themes": [],
        "outdated_plugins": [
          {
            "name": "Example Plugin",
            "current_version": "1.2.0",
            "new_version": "1.3.0"
          }
        ]
      }
    ```

**Example response — /v1/audit:**

    ```
      {
        "core": {
          "current_version": "6.4.3",
          "new_version": "6.5",
          "is_outdated": true
        },
        "themes": [
          {
            "name": "Twenty Twenty-Four",
            "slug": "twentytwentyfour",
            "current_version": "1.3",
            "new_version": null,
            "is_outdated": false,
            "is_active": true
          }
        ],
        "plugins": [
          {
            "name": "Example Plugin",
            "slug": "example-plugin/example-plugin.php",
            "current_version": "1.2.0",
            "new_version": "1.3.0",
            "is_outdated": true,
            "is_active": true
          }
        ]
      }
    ```

**Additional info:**
 The unique request ID for each API call is returned in the
response header:

    ```
    X-Request-ID: {{unique-request-id}}
    ```

## Screenshot

[⌊Admin settings⌉⌊Admin settings⌉[

Admin settings

## Recensioni

Non ci sono recensioni per questo plugin.

## Contributi e sviluppo

“VerCheck API” è un software open source. Le persone che hanno contribuito allo 
sviluppo di questo plugin sono indicate di seguito.

Collaboratori

 *   [ Roland Bende ](https://profiles.wordpress.org/rbende/)
 *   [ Roland Bende ](https://profiles.wordpress.org/rolandbende/)

[Traduci “VerCheck API” nella tua lingua.](https://translate.wordpress.org/projects/wp-plugins/vercheck-api)

### Ti interessa lo sviluppo?

[Esplora il codice](https://plugins.trac.wordpress.org/browser/vercheck-api/) segui
il [repository SVN](https://plugins.svn.wordpress.org/vercheck-api/), segui il [log delle modifiche](https://plugins.trac.wordpress.org/log/vercheck-api/)
tramite [RSS](https://plugins.trac.wordpress.org/log/vercheck-api/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.2.0

 * New: Added `/v1/environment` endpoint — returns PHP, MySQL, WordPress, and VerCheck
   API versions (protected by Bearer token)

#### 1.1.0

 * New: Added `/v1/audit` endpoint — full inventory of all installed themes and 
   plugins with version and update info
 * Improvement: Moved Bearer token authentication to `permission_callback` (WordPress
   REST API best practice)

#### 1.0.3

 * Bugfix: Response themes & plugin order

#### 1.0.2

 * Bugfix: Removed unnecessary fnc. call (loadtextdomain)

#### 1.0.1

 * PHPCS fixes

#### 1.0.0

 * Initial release. REST API endpoint and admin token settings.

## Meta

 *  Versione **1.2.0**
 *  Ultimo aggiornamento **2 mesi fa**
 *  Installazioni attive **20+**
 *  Versione WordPress ** 5.2 o superiore **
 *  Testato fino alla versione **7.0.4**
 *  Versione PHP ** 7.4 o superiore **
 *  Lingua
 * [English (US)](https://wordpress.org/plugins/vercheck-api/)
 * Tag
 * [healthcheck](https://it.wordpress.org/plugins/tags/healthcheck/)
 *  [Visualizzazione avanzata](https://it.wordpress.org/plugins/vercheck-api/advanced/)

## Valutazioni

Non sono state ancora inviate recensioni.

[La tua recensione](https://wordpress.org/support/plugin/vercheck-api/reviews/#new-post)

[Vedi tutte le recensioni](https://wordpress.org/support/plugin/vercheck-api/reviews/)

## Collaboratori

 *   [ Roland Bende ](https://profiles.wordpress.org/rbende/)
 *   [ Roland Bende ](https://profiles.wordpress.org/rolandbende/)

## Supporto

Hai qualcosa da dire? Ti serve aiuto?

 [Chiedi nel forum di supporto](https://wordpress.org/support/plugin/vercheck-api/)

## Dona

Vuoi supportare lo sviluppo di questo plugin?

 [ Fai una donazione per questo plugin ](https://rolandbende.com/)