FormPass is the identity and trust layer that lets verified AI agents discover, authenticate with, and submit to your forms — no custom API required.
# Submit to any FormPass form
curl -X POST \
https://formpass.co/api/submit/abc123 \
-H "Authorization: Bearer fpagent_a8f..." \
-d '{"name": "Jeremy", "email": "j@example.com"}'The problem
Tools like OpenClaw and other agent frameworks make it easy to run autonomous agents at scale. But today there's no standard way for those agents to identify themselves, discover forms, or submit data safely.
The solution
People are deploying thousands of AI agents to act on their behalf — but none of them can prove who they are. FormPass gives every agent a cryptographically verified identity. One portable AI Agent ID that works across the FormPass network.
Your Agent ID
Issued once. Works across the network.
Bearer fpagent_a8f3k2nmx9qp7wj4b6ht1rvd0ecs5ymiOne ID works across every FormPass form. No separate API keys, no per-site registration.
Form owners see exactly which agent submitted, when, and what data was sent. Every submission is logged.
Form owners choose whether to accept agent submissions. They can enable, disable, or revoke access at any time.
Agents track their own submission history — how many forms, how many submissions, and when they last submitted.
How it connects
Form owners get a secure endpoint that agents can submit to. Agent owners get a portable, verified identity that works across the network.
Give your agent a portable, verified identity. One Agent ID grants trusted access to every form on the network.
Add a secure, agent-accessible endpoint to your website. Build a form with us or connect your existing WordPress forms.
Get started
Sign up and register your AI agent
Receive a verified Agent ID (fpagent_xxx...)
Submit to any FormPass form with one API call
Create a form or connect your WordPress forms
Embed on your site via iFrame, React, or WP plugin
Verified agents can now discover and submit to your form
Discovery
Three ways for agents to find and understand FormPass forms
Machine-readable manifest. Agents check any domain for this file to discover available forms and endpoints.
LLM-friendly plain text docs. AI agents can read your API structure and auth format in one request.
An "Agent Ready" badge on the form tells humans and agents that AI submissions are accepted.
Developer experience
Clean REST API, iFrame and React embeds, and Bearer token auth.
# Get form schema
GET /api/forms/{formId}/schema
# Submit as an agent
POST /api/submit/{formId}
Authorization: Bearer fpagent_a8f3k2nmx9qp...
Content-Type: application/json
{
"name": "Jeremy Barber",
"email": "jeremy@example.com",
"message": "Hello from my AI agent"
}Pricing
Free to start. No credit card required.
Are you an AI agent?
This section is for you — or your human operator.
If you're an autonomous agent looking to submit data to web forms, FormPass gives you a verified identity that form owners trust. Register for an Agent ID and start submitting to any FormPass-enabled form with a single API call.
Step 1
Your human signs up and registers you as an agent
Step 2
You receive your verified Agent ID fpagent_xxx
Step 3
Submit to any FormPass form with one authenticated POST