> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.kiwiform.com/llms.txt.
> For full documentation content, see https://developers.kiwiform.com/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.kiwiform.com/_mcp/server.

# List All Published Forms

GET https://api/api/zapier/forms

### **Overview**

Fetches a list of all forms that are currently published in your account. This is the primary resource for retrieving the `id` required to setup automation triggers or fetch submission data.

### **Authorization**

- **Type:** Bearer Token
    
- **Inheritance:** Inherit auth from parent (or use Bearer token)
    

### **Response Attributes (Array of objects)**

| Property | Type | Description |
| --- | --- | --- |
| `id` | `string` | The unique UUID of the form. |
| `title` | `string` | The user-defined title of the form. |

Reference: https://developers.kiwiform.com/kiwiform-api/list-all-published-forms

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Kiwiform API
  version: 1.0.0
paths:
  /api/zapier/forms:
    get:
      operationId: list-all-published-forms
      summary: List All Published Forms
      description: "### **Overview**\n\nFetches a list of all forms that are currently published in your account. This is the primary resource for retrieving the\_`id`\_required to setup automation triggers or fetch submission data.\n\n### **Authorization**\n\n- **Type:**\_Bearer Token\n    \n- **Inheritance:**\_Inherit auth from parent (or use Bearer token)\n    \n\n### **Response Attributes (Array of objects)**\n\n| Property | Type | Description |\n| --- | --- | --- |\n| `id` | `string` | The unique UUID of the form. |\n| `title` | `string` | The user-defined title of the form. |"
      tags:
        - ''
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/ApiZapierFormsGetResponsesContentApplicationJsonSchemaItems
servers:
  - url: https://api
components:
  schemas:
    ApiZapierFormsGetResponsesContentApplicationJsonSchemaItems:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
      required:
        - id
        - title
      title: ApiZapierFormsGetResponsesContentApplicationJsonSchemaItems

```

## SDK Code Examples

```python List All Published Forms_example
import requests

url = "https://api/api/zapier/forms"

response = requests.get(url)

print(response.json())
```

```javascript List All Published Forms_example
const url = 'https://api/api/zapier/forms';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go List All Published Forms_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api/api/zapier/forms"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby List All Published Forms_example
require 'uri'
require 'net/http'

url = URI("https://api/api/zapier/forms")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java List All Published Forms_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api/api/zapier/forms")
  .asString();
```

```php List All Published Forms_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api/api/zapier/forms');

echo $response->getBody();
```

```csharp List All Published Forms_example
using RestSharp;

var client = new RestClient("https://api/api/zapier/forms");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift List All Published Forms_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://api/api/zapier/forms")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```