Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support abhiladdha07

    (@abhiladdha07)

    Hi @anupamasam,

    Thanks for reaching out.

    Can you please confirm if you are looking to create custom API endpoints to deal with the Yoast plugin’s data stored in your WordPress site? If yes, then with this plugin, you can create any endpoint to perform CRUD operations to deal with WordPress data, including Yoast.

    Also, if you can share more detailed information regarding what kind of endpoint you are looking to create, then we can point you in the right direction.

    Thanks,
    Team miniOrange

    Thread Starter anupamasam

    (@anupamasam)

    Okay, so we want to create a custom JSON API end point, which is only for AI search engines/LLMs to read the website information. Current API end points have a lot of noises. We want AI search engines to read Title, URL, Description, and Content.

    For eg: https://www.staffordglobal.org/wp-json/wp/v2/pages

    and connect it to the robots.txt to be readable by LLMS.

    # LLM and AI-friendly structured data endpoint:

    # Provides clean JSON content for AI systems and data readers.

    AI-Endpoint: https://www.staffordglobal.org/wp-json/llm/v1/pages

    • Example JSON output:

      {
        “title”: “Online MBA in UAE”,
        “url”: “https://yourdomain.com/online-mba-uae“,
        “content”: “Full clean text of the page…”,
        “categories”: [“MBA”, “Business”],
        “meta”: {
          “university”: “University of Dundee”,
          “duration”: “2 years”,
          “format”: “Online”
        }
      }
    Plugin Support abhiladdha07

    (@abhiladdha07)

    Thanks for getting back to us @anupamasam,

    Yes, with our plugin, you can do it. All the posts and pages data are stored in the wp_posts and wp_post_meta tables, so you can create an API and choose the data you want from these tables. You can follow these guides.

    Let us know if you need more help. We’d be happy to help to achieve what you are looking for.

    Thanks,
    Team miniOrange

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.