> 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 AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.kiwiform.com/_mcp/server.

# List Forms

GET https://app.kiwiform.com/api/integrations/make/forms

##### Retrieve all active forms belonging to the authenticated user's account. This list will populate the dynamic form dropdown in Make.

### Headers

- **Authorization** (string, Required): Bearer YOUR_MAKE_API_KEY

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

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Kiwiform API
  version: 1.0.0
paths:
  /api/integrations/make/forms:
    get:
      operationId: list-forms
      summary: List Forms
      description: >-
        ##### Retrieve all active forms belonging to the authenticated user's
        account. This list will populate the dynamic form dropdown in Make.


        ### Headers


        - **Authorization** (string, Required): Bearer YOUR_MAKE_API_KEY
      tags:
        - subpackage_kiwiformMakeApi
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/ApiIntegrationsMakeFormsGetResponsesContentApplicationJsonSchemaItems
servers:
  - url: https://app.kiwiform.com
    description: https://app.kiwiform.com
components:
  schemas:
    ApiIntegrationsMakeFormsGetResponsesContentApplicationJsonSchemaItems:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
      required:
        - id
        - title
      title: ApiIntegrationsMakeFormsGetResponsesContentApplicationJsonSchemaItems

```

## Examples



**Response**

```json
[
  {
    "id": "cmq4yl148002kbzpg03y8dzp2",
    "title": "Contact Us Form"
  },
  {
    "id": "cmq4yl148002kbzpg03y8dzp3",
    "title": "Feedback Survey"
  }
]
```

**SDK Code**

```python Kiwiform Make API_List Forms_example
import requests

url = "https://app.kiwiform.com/api/integrations/make/forms"

response = requests.get(url)

print(response.json())
```

```javascript Kiwiform Make API_List Forms_example
const url = 'https://app.kiwiform.com/api/integrations/make/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 Kiwiform Make API_List Forms_example
package main

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

func main() {

	url := "https://app.kiwiform.com/api/integrations/make/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 Kiwiform Make API_List Forms_example
require 'uri'
require 'net/http'

url = URI("https://app.kiwiform.com/api/integrations/make/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 Kiwiform Make API_List Forms_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://app.kiwiform.com/api/integrations/make/forms")
  .asString();
```

```php Kiwiform Make API_List Forms_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://app.kiwiform.com/api/integrations/make/forms');

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

```csharp Kiwiform Make API_List Forms_example
using RestSharp;

var client = new RestClient("https://app.kiwiform.com/api/integrations/make/forms");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Kiwiform Make API_List Forms_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://app.kiwiform.com/api/integrations/make/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()
```