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

# Form Filling Content Retrieval APIs

> Retrieve status, structured data, and recordings from a Form filling session

The Form filling Content Retrieval APIs enable partners to check Form filling session status and retrieve structured form output and visit recordings after a session runs. Use these endpoints when your backend needs EHR-compatible structured data or recording access for a completed Form filling session.

These APIs are called from your servers and authenticated with a Suki Token (`sdp_suki_token`). Critically, wait until session status is ready for your workflow before you treat structured data as final.

## Available endpoints

<Columns cols={3}>
  <Card title="Form Filling Session Status" href="/form-filling-api-reference/form-filling-sessions/status" arrow={true} icon="code">
    Poll processing status for a Form filling session
  </Card>

  <Card title="Form Filling Structured Data" href="/form-filling-api-reference/form-filling-sessions/structured-data" arrow={true} icon="code">
    Retrieve EHR-compatible structured data for a Form filling session
  </Card>

  <Card title="Form Filling Session Recording" href="/form-filling-api-reference/form-filling-content/recording" arrow={true} icon="code">
    Retrieve recording access for a Form filling session
  </Card>
</Columns>

## Related guides

<Columns cols={3}>
  <Card title="Form Filling Basic Usage" href="/documentation/how-to/form-filling/form-filling-basic-usage" icon="book" cta="Learn more">
    Learn when to poll status and retrieve structured form output
  </Card>

  <Card title="Form Filling Overview" href="/documentation/concepts/form-filling/form-filling-overview" icon="book" cta="Learn more">
    Learn how Form filling structured output fits the product workflow
  </Card>

  <Card title="Notification Webhook" href="/documentation/webhook/overview" icon="book" cta="Learn more">
    Learn how to use webhooks instead of polling alone when Form filling completes
  </Card>
</Columns>

## Common use cases

<Columns cols={2}>
  <Card title="Write structured form fields into your EHR">
    Retrieve Form filling structured data after processing completes, then map fields into your save or care-management workflow.
  </Card>

  <Card title="Review generated forms before submit">
    Present structured form output for clinician review, including values your workflow must complete before write-back.
  </Card>

  <Card title="Support audit with visit recordings">
    Access Form filling recordings when quality review or support needs the source audio behind the generated form.
  </Card>

  <Card title="Combine in-app status with backend notifications">
    Use status checks for interactive review screens and webhooks for server-side completion handling.
  </Card>
</Columns>
