Skip to main content

AgentQL

Build AI agents using a query language for precise web and app automation

AgentQL for Web:

Locate and interact with web elements through natural language query

import agentql

AGENT_QL_QUERY = """
  {
      delivery_date
      model_s_price
      mode_s_plaid_price
  }
"""

response = agentql.query(AGENT_QL_QUERY)

print(response.delivery_date) # Feb - Mar 2024
print(response.model_s_price) # $99.990
print(response.mode_s_plaid_price) # $124.990

AgentQL for App:

Automate mobile apps in just a few lines of code