Plugin info

Total downloads: 237
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 6/8/2025 (206 days ago)
Added to WordPress: 6/7/2025 (0 years old)
Minimum WordPress version: 5.2
Tested up to WordPress version: 6.8.3
Minimum PHP version: 7.4

Maintenance & Compatibility

Maintenance score

Stale • Last updated 206 days ago

38/100

Is VerCheck API abandoned?

Likely maintained (last update 206 days ago).

Compatibility

Requires WordPress: 5.2
Tested up to: 6.8.3
Requires PHP: 7.4

Developers

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

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.

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

Important: The endpoint requires authentication via a Bearer token.

The API returns a JSON object with the following data:
– The current WordPress version.
– A list of active plugins with available updates, including their current and latest versions.
– A list of active themes with available updates, including their current and latest versions.

Example response:

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

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

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

Installation

No installation instructions available

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

  1. Admin settings

    Admin settings

Changelog

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.