Builder Toolswordpress_extract_builder_content
Builder Tools

wordpress_extract_builder_content

Extract structured page builder content (Divi, Elementor, Bricks, etc.) for inspection and targeted edits.

wordpress_extract_builder_content

Extract structured content from a page builder (Divi, Elementor, etc.).

Parameters

ParameterTypeRequiredDescription
builderstringYesBuilder name (gutenberg, divi, elementor, etc.)
pageIdnumberYesPage ID

Response

{
  "success": true,
  "builder": "divi",
  "pageId": 42,
  "structure": {
    "sections": [
      {
        "rows": [
          {
            "columns": [
              {
                "modules": [
                  {
                    "type": "et_pb_text",
                    "admin_label": "Hero Text",
                    "content": "<h1>Welcome</h1>"
                  }
                ]
              }
            ]
          }
        ]
      }
    ]
  }
}

Example Prompts

  • "Show me the structure of the homepage"
  • "Extract the Divi layout for page 42"
  • "What modules are on the first section of my About page?"

Notes

  • Read-only tool - doesn’t modify content
  • Use this before updating modules by path or type
Was this page helpful?
Built with Documentation.AI

Last updated Dec 15, 2025