Bulk Get Entry Details is a WordPress ability from SureForms — usable via Easy MCP AI, which connects Claude, ChatGPT, and any AI assistant to your site.
Install Free Plugin →Bulk Get Entry Details
Read-onlyRetrieve full submitted data for up to 50 SureForms entries in a single call.
Requires the SureForms plugin on WordPress 6.9+ (the Abilities API is gated behind function_exists('wp_register_ability'), so it degrades gracefully on WP 6.4-6.8). Abilities only register when the 'srfm_abilities_api' option is enabled in SureForms' AI settings, and every ability requires the current user to have the 'manage_options' capability. Abilities that create or modify data additionally require the 'srfm_abilities_api_edit' option to not be explicitly disabled; abilities that permanently delete data additionally require 'srfm_abilities_api_delete' to not be explicitly disabled.
What it does
This ability fetches detailed, labeled submission data for a batch of entry IDs (capped at 50 per call) in one round trip, using the same field-parsing logic as get-entry for each entry. Entries that can't be found are reported individually in an errors array rather than failing the whole request. This saves an AI assistant from making dozens of individual get-entry calls when it needs to review or summarize a batch of submissions at once.
See it in action
You ask your AI assistant
"Pull the full details for entries 100, 101, and 105 so I can compare their answers."
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| entry_ids | array | Yes | Array of entry IDs to retrieve (max 50). |
Returns
An object with an entries array (same shape as get-entry, one per found entry) and an errors array (entry_id, message) for any entries that could not be found.
Permission
Requires the 'manage_options' capability, and the 'srfm_abilities_api' master option must be enabled. This ability has no additional gate option.
More SureForms abilities
Create SureForms Form
Create a new SureForms form from a title, an array of field definitions, and optional metadata.
Delete Entry
Permanently delete one or more SureForms submission entries.
Delete SureForms Form
Move a SureForms form to trash, or permanently delete it when force is set.
Duplicate SureForms Form
Clone an existing SureForms form, including its fields, metadata, and settings, as a new draft.
Get Entry Details
Retrieve the full submitted data for a single SureForms entry, with field labels resolved.
Get Form Analytics
Retrieve raw submission timestamps for a date range, optionally scoped to one form, capped at 10,000 results.