Last updated 4 days ago
You need an API Key to work with TakeForm Developer API. You can download TakeForm developer OpenAPI schema by . You can also interact with OpenAPI schema in
curl -L \ --url 'https://api.takeform.app/developer/v1/filled-forms/{form_id}' \ --header 'X-API-Key: YOUR_API_KEY'
{ "filled_form": { "id": "123e4567-e89b-12d3-a456-426614174000", "form_id": "123e4567-e89b-12d3-a456-426614174000", "file_id": "123e4567-e89b-12d3-a456-426614174000", "user_id": "123e4567-e89b-12d3-a456-426614174000", "filled_via": "Web", "status": "Created", "updated_at": 1, "created_at": 1, "name": "text" }, "form_url": "text" }
curl -L \ --url 'https://api.takeform.app/developer/v1/filled-forms' \ --header 'X-API-Key: YOUR_API_KEY'
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "form_id": "123e4567-e89b-12d3-a456-426614174000", "file_id": "123e4567-e89b-12d3-a456-426614174000", "user_id": "123e4567-e89b-12d3-a456-426614174000", "filled_via": "Web", "status": "Created", "updated_at": 1, "created_at": 1, "name": "text" } ]
curl -L \ --url 'https://api.takeform.app/developer/v1/forms' \ --header 'X-API-Key: YOUR_API_KEY'
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "description": "text", "file_id": "123e4567-e89b-12d3-a456-426614174000", "index": 1, "updated_at": 1, "created_at": 1, "status": "None", "is_draft": true, "user_id": "123e4567-e89b-12d3-a456-426614174000", "cost": 1 } ]
curl -L \ --request POST \ --url 'https://api.takeform.app/developer/v1/forms/{form_id}/fill' \ --header 'X-API-Key: YOUR_API_KEY' \ --header 'Content-Type: application/json; charset=utf-8' \ --data '{ "sources": [ { "type": "Text", "text": "text" } ] }'