Before changing a site-wide setting, your AI should see what is stored now.
content/get-jet-engine-options-page returns one options page by slug together with the values currently saved for its fields.
At a glance
| Ability | content/get-jet-engine-options-page |
| Toolset | Content — toolset/content |
| Group | JetEngine › Options Pages |
| Requires | JetEngine, active on the site |
| Capability | manage_options |
| Safety | Read-only — changes nothing |
| Repeatable | Idempotent — running it twice leaves the same result |
| Ships in | AcrossAI Abilities Manager 0.1.0 and later |
How it works
Pass the options page slug, as returned by List JetEngine Options Pages.
The values come straight from the page’s wp_options row, so they are what your templates and listings are reading right now.
It changes nothing.
Input
| Name | Type | Required | What it is |
|---|---|---|---|
slug | string | Yes | The options page slug. |
What comes back
| Name | Type | What it is |
|---|---|---|
page | object | The options page, its fields and their stored values. |
success | boolean | Whether the call completed. |
message | string | A one-line summary of what happened, suitable for showing a human. |
error_code | string | Present only on failure — a stable machine-readable reason, such as a missing field, a wrong field type or an unmet confirmation. |
Example
Ask your assistant:
What’s currently saved on the Contact Details options page?
It resolves to one call:
{
"ability": "content/get-jet-engine-options-page",
"parameters": {
"slug": "contact-details"
}
}Worth knowing
- Read-only.
- Check the exact field name here before updating it — field names are case-sensitive.
Related abilities
- List JetEngine Options Pages — find the slug
- Update a JetEngine Options Page Field — change a value
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category