{
  "format": "delx/intent-card/v1",
  "id": "forms-extract-api",
  "intent": "list the forms on a public web page",
  "title": "HTML forms extraction API for agents",
  "description": "Extract bounded form actions and field names from one public page for $0.01—no form submission or authenticated workflows.",
  "keywords": [
    "HTML forms API",
    "form field extraction",
    "login form detection",
    "agent form inventory",
    "x402 forms"
  ],
  "updated_at": "2026-08-06",
  "canonical_url": "https://commerce.delx.ai/intents/forms-extract-api",
  "machine_url": "https://commerce.delx.ai/intents/forms-extract-api.json",
  "recommendation": {
    "tool_name": "util_forms_extract",
    "service_name": "Delx Forms Extract",
    "method": "POST",
    "resource": "https://api.delx.ai/api/v1/x402/forms-extract",
    "price_usdc": "0.01",
    "payment_protocols": [
      "x402",
      "mpp"
    ],
    "input_schema": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "description": "URL to inspect"
        },
        "timeout": {
          "type": "integer",
          "description": "Timeout in seconds (1-15)",
          "default": 8,
          "minimum": 1,
          "maximum": 15
        }
      },
      "required": [
        "url"
      ]
    },
    "example_input": {
      "url": "https://example.com/login"
    },
    "example_output": {
      "tool_name": "util_forms_extract",
      "result": {
        "form_count": 1,
        "forms": [
          {
            "action": "https://example.com/session",
            "method": "POST",
            "input_count": 2,
            "inputs": [
              {
                "tag": "input",
                "type": "email",
                "name": "email",
                "required": true
              },
              {
                "tag": "input",
                "type": "password",
                "name": "password",
                "required": true
              }
            ]
          }
        ]
      }
    },
    "agentcash": {
      "buy": "npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/forms-extract -m POST -H 'x-delx-source: intent-card-forms-extract-api' --max-amount 0.01 -b '{\"url\":\"https://example.com/login\"}'",
      "max_amount_usdc": "0.01"
    }
  },
  "attribution": {
    "header": "x-delx-source",
    "value": "intent-card-forms-extract-api"
  },
  "evidence": {
    "paid_openapi": "https://api.delx.ai/openapi.x402.json",
    "governed_portfolio": "https://api.delx.ai/x402-portfolio.json",
    "live_contract": "https://api.delx.ai/api/v1/x402/forms-extract"
  }
}
