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

# Get Application

> Retrieve a single form submission by ID

# Get Application

Returns a single application (form submission) by ID.

**Required scope:** `applications:read`

## Path Parameters

<ParamField path="applicationId" type="string" required />

## Response

Returns the full application schema (see [List Applications](/api-reference/applications/list-applications)), plus a `history` array that the list endpoint omits.

<ResponseField name="history" type="array">
  The application's status change log, oldest-first. Append-only — each entry records a status transition recorded inside Gomry (e.g. acceptance/rejection). It does **not** track changes to `metadata`; keep your own changelog inside `metadata` if you need one.

  <Expandable title="History entry">
    <ResponseField name="status" type="string | null" />

    <ResponseField name="changed_by" type="string | null">User ID that made the change</ResponseField>
    <ResponseField name="changed_at" type="string | null">ISO-8601 timestamp</ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -H "X-API-KEY: your_api_key" "https://www.gomry.com/api/v1/applications/APPLICATION_ID"
  ```
</RequestExample>
