How to query M
icrosoft Forms
with AgentQL

Looking for a better way to query Microsoft Forms? Say goodbye to fragile XPath or DOM selectors that easily break with website updates. AI-powered AgentQL ensures consistent data querying across various platforms, from Microsoft Forms to any other website, regardless of UI changes.

Not just for Microsoft Forms

Smart selectors work anywhere

https://forms.office.com

URL

Input any webpage.

{
  forms[] {
    title
    description
    fields[] {
      name
      type
    }
  }
}

Query

Describe data in natural language.

{
  "forms": [
    {
      "title": "Sample Form",
      "description": "This is a sample form",
      "fields": [
        {
          "name": "Name",
          "type": "text"
        },
        {
          "name": "Email",
          "type": "email"
        }
      ]
    }
  ]
}

Returns

Receive accurate output in seconds.

How to use AgentQL on Microsoft Forms

A dotted lineA blue lineA blue line
1

Install the SDK

Install code for JS and Python

npm install agentql

pip3 install agentql

2

Test and refine

Use the query debugger

3

Run your script

Install code for both JS and Python

agentql init

python example.py

Get started

Holds no opinions on what’s and how’s. Build whatever makes sense to you.