# get_wordpress_install

> Get the detail for one WordPress install — its version and any pending upgrade, the auto-update state, and the plugins and themes Installatron tracks.

- Tier: R
- Required scope: read:hosting
- Annotations: readOnlyHint, idempotentHint
- Docs: https://api.inleed.com/tools/get-wordpress-install

## Description

Get the detail for one WordPress install — its version and any pending upgrade, the auto-update state, and the plugins and themes Installatron tracks. This returns only the allow-listed fields and never database credentials or admin passwords — to log into the site use `create_wordpress_admin_link`. It is Installatron's view of the install, read-only: to act on the site use the WP-CLI tools by domain — `manage_wp_plugins` and `manage_wp_themes` (install, update, activate), `manage_wp_site` (`status` for the live version and pending updates, `update_core`), `manage_wp_content`, `manage_wp_settings`, `manage_wp_users`. It reads over SSH and degrades gracefully on a node without a licensed Installatron.

## Input schema

- `input` — string (required). A domain, email address, website URL, numeric service id, or hosting-account username the customer actually owns. Resolved to the owning account automatically; the resolved target is echoed back in the response.
- `install_id` — string (required). The install to inspect, from list_wordpress_installs (installs[].id).

## Example call

```json
{
  "name": "get_wordpress_install",
  "arguments": {
    "input": "example.se",
    "install_id": "res_01hx8n3k5p7q9r2s4t6v8w0y60"
  }
}
```

