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

# Get Proposal

> Returns a single proposal by ID.

The proposal must belong to the authenticated organization.

## Path parameters

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

<RequestExample>
  ```bash theme={null}
  curl https://nest.feather.mupeni.dev/v1/proposals/prop_01hx... \
    -H "Authorization: Bearer <server_key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "prop_01hx...",
    "orgId": "org_01hx...",
    "flagId": "flag_01hx...",
    "environmentId": "env_01hx...",
    "status": "pending",
    "proposedConfig": {
      "version": 3,
      "enabled": true,
      "defaultValue": false,
      "rules": []
    },
    "createdBy": "key_01hx...",
    "reviewedBy": null,
    "reviewedAt": null,
    "reviewNote": null,
    "createdAt": "2024-04-10T14:00:00.000Z"
  }
  ```

  ```json 404 theme={null}
  {
    "error": { "code": "RESOURCE_NOT_FOUND", "message": "Proposal not found." }
  }
  ```
</ResponseExample>
