Simple REST API for automated form filling powered by AI. Submit forms programmatically with natural language instructions.
All API requests require your API key in the Authorization header:
Keep your API key secure and never expose it in client-side code.
https://api.formwing.com
Start one or more automated form filling jobs
{ "urls": [ "https://example.com/contact", "https://example.com/support" ], "context": "I want to inquire about enterprise pricing and schedule a demo", "uid": "user_123" }
{ "jobs": [ { "id": "550e8400-e29b-41d4-a716-446655440000", "status": "queued" }, { "id": "550e8400-e29b-41d4-a716-446655440001", "status": "queued" } ], "totalJobs": 2 }
curl -X POST api.formwing.com/workflows \ -H "Authorization: Bearer your_api_key" \ -H "Content-Type: application/json" \ -d '{"urls": ["https://example.com/contact"], "context": "I want to schedule a demo", "uid": "user_123"}'
To ensure service quality, API requests are limited to:
Contact us if you need higher limits for your use case.