> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usekinetic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Forms

> GET /api/v1/external/forms — retrieve all forms for your workspace.

# List Forms

```
GET /api/v1/external/forms
```

Returns all forms in your workspace with response counts.

## Parameters

| Parameter | Type    | Default | Description                |
| --------- | ------- | ------- | -------------------------- |
| `limit`   | integer | 50      | Results per page (max 200) |
| `offset`  | integer | 0       | Skip this many results     |

## Response

```json theme={null}
{
  "data": [
    {
      "id": "6de00b12-3de5-4823-867c-645886cde9cd",
      "title": "Welcome Survey",
      "created_at": "2026-05-14T08:31:42Z",
      "is_published": true,
      "response_count": 142
    }
  ],
  "pagination": { "total": 18, "limit": 50, "offset": 0 }
}
```
