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

# List repurpose source formats

> List the video formats a repurpose can watch on a source account.

Requires **manage repurposes** permission (Owner / Admin / Member). Viewers get `403`.

Conceptual guide: [Repurpose](/knowledge-base/repurposes).

Use these `value`s as `source_format` on [create](/api-reference/endpoint/create-repurpose) and [update](/api-reference/endpoint/update-repurpose). Labels follow the caller's locale.

Wrapped in `{ "data": [...] }` (not a pagination envelope).

<RequestExample>
  ```bash theme={null}
  curl -X GET https://app.trypost.it/api/repurpose-source-formats \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      { "value": "reel", "label": "Reels" },
      { "value": "video", "label": "Videos" },
      { "value": "story", "label": "Stories" }
    ]
  }
  ```
</ResponseExample>
