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

# Public Config

> Get public platform configuration including the platform wallet address.

Public endpoint -- no authentication required.

Returns the platform wallet address that founders need to approve for ERC-20 token spending.

### Example

```bash theme={null}
curl https://api.shipyardprotocol.com/api/config/public
```

## Response

<ResponseField name="platform_wallet" type="string">
  The platform backend wallet address. Founders must call `approve(platform_wallet, amount)` on their project's token contract to enable bounty payouts.
</ResponseField>

```json 200 theme={null}
{
  "platform_wallet": "0x81d11dd9b0f292c333712785d1c17ddc23711222"
}
```
