Special Launch Offer - 2 Years Just $400, Limited to 5 Customers Get Started

FormWing API Documentation

Simple REST API for automated form filling powered by AI. Submit forms programmatically with natural language instructions.

Authentication

All API requests require your API key in the Authorization header:

Authorization: Bearer your_api_key

Keep your API key secure and never expose it in client-side code.

Base URL

https://api.formwing.com

Endpoints

POST /workflows

Start a new automated form filling job

Request Body

{
  "url": "https://example.com/contact",
  "context": "I want to inquire about enterprise pricing and schedule a demo"
}

Response

{
  "id": "wf_8a7b4c2d1e",
  "status": "queued"
}

Example Request

curl -X POST api.formwing.com/workflows \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/contact", "context": "I want to schedule a demo"}'
GET /workflows/:id

Get the current status and results of a form fill job

Response

{
  "id": "wf_8a7b4c2d1e",
  "status": "completed",
  "output": {
    "success": true,
    "formSubmissions": [
      {
        "url": "https://example.com/contact",
        "method": "POST",
        "timestamp": 1709312400000
      }
    ]
  }
}

Example Request

curl api.formwing.com/workflows/wf_8a7b4c2d1e \
  -H "Authorization: Bearer your_api_key"

Rate Limits

To ensure service quality, API requests are limited to:

  • 100 requests per minute per API key
  • 1,000 form fills per day per API key

Contact us if you need higher limits for your use case.