---
title: "GET /forms"
method: GET
path: "/forms"
tags: ["Forms"]
---

# GET /forms

`GET /forms`

This endpoint returns a list of forms that are accessible by the authorized user. This feature is available as part of the [Standard API](https://paperform.co/pricing/).

## Query parameters

- `search` string
- `search_fields` string[]
- `limit` integer
- `skip` integer
- `after_id` string
- `before_id` string
- `before_date` string, date-time
- `after_date` string, date-time
- `sort` 'ASC' | 'DESC'

## Response `200`

Successfully returned a list of forms

- object
  - `status` 'ok'
  - `results` object
    - `forms` Form[]
      - `id` string, uuid — The unique identifier of the form.
      - `slug` string — The default generated slug for the form.
      - `custom_slug` string, nullable — The custom slug for the form if set.
      - `space_id` integer — The id of the Space which contains the form.
      - `title` string, nullable — The title of the form.
      - `description` string, nullable — The description of the form.
      - `cover_image_url` string, uri, nullable — The cover image for the form.
      - `url` string, uri — The main sharing URL for the form.
      - `additional_urls` string[] — Additional URLs for the form
      - `live` boolean — Indicates if the form is currently accepting submissions.
      - `tags` string[], nullable — The tags assigned to the form.
      - `submission_count` integer — The number of submissions the form has received.
      - `created_at` string — A formatted date-time string in your account timezone indicating the time the form was created.
      - `updated_at` string — A formatted date-time string in your account timezone indicating the time the form was created.
      - `account_timezone` string — The configured timezone for your account.
      - `created_at_utc` string, date-time — A formatted date-time string in UTC indicating the time the form was created.
      - `updated_at_utc` string, date-time — A formatted date-time string in UTC indicating the time the form was created.
  - `total` integer — The total number of items.
  - `has_more` boolean — Whether there are more items.
  - `limit` integer — The limit of items per page.
  - `skip` integer — The number of items to skip.

## Other responses

- `400` — Invalid Request
- `401` — Unauthorized
- `403` — Not Permitted
- `404` — Not Found
- `429` — Too Many Requests
- `5XX` — Unexpected Error

---

[API](https://skmtc.net/paperform/apis/paperform-api.md) · [All operations](https://skmtc.net/paperform/apis/paperform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paperform/paperform-api/versions/dc1e62b7063d/schema)
