> For the complete documentation index, see [llms.txt](https://formdr.gitbook.io/formdr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://formdr.gitbook.io/formdr/documentation/get-forms-list.md).

# Get Forms List

## Get complete form data of a specific form

<mark style="color:blue;">`GET`</mark> `https://api.formdr.com/api/v1/practice/{practiceId}/forms`

#### Path Parameters

| Name                                         | Type   | Description |
| -------------------------------------------- | ------ | ----------- |
| practiceId<mark style="color:red;">\*</mark> | String | Practice ID |

#### Query Parameters

| Name                 | Type    | Description                                                                                                                                 |
| -------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| showNetworkForms     | boolean | If true, and if the auth token is from a network account, will include in the response all forms from practices that belong to the network. |
| showPreviousVersions | boolean | If true, also returns previous form versions (which have the currentVersionId property set)                                                 |

{% tabs %}
{% tab title="200: OK " %}

```javascript
[
  {
    "id": 21,
    "formUuid": "H-WpEut-lWppw_F_jnFVR1UQa-SbaRbA",
    "practiceId": 4,
    "formName": "My Form",
    "printSettings": null,
    "formStatus": "completed",
    "thankYouPageUrl": null,
    "enableDownloadPdf": true,
    "enableGdpr": null,
    "lockPrefilled": false,
    "dueDate": null,
    "createdAt": "2023-08-03T13:32:23.000Z",
    "language": null,
    "formExtension": {
      "id": 9,
      "formId": 21,
      "syncedForm": false,
      "syncedFormIds": "S5Pqmab27r9y9PzUt1iSZ7ML_CYoybxD",
      "urlName": null,
      "type": null,
      "industry": null,
      "tags": null,
      "templateDescription": null,
      "templateLogo": null,
      "pendingConversion": false
    },
    "standardizedUrl": "http://localhost:4200/practice/NA==/form/H-WpEut-lWppw_F_jnFVR1UQa-SbaRbA"
  },
  ...
]
```

{% endtab %}
{% endtabs %}
