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

# Get Widget

> Retrieve a widget by its ID.

`GET /api/v1/businesses/:businessId/widgets/:widgetId`

## Parameters

### Path

| Name         | Type     | Required | Description     |
| ------------ | -------- | -------- | --------------- |
| `businessId` | `string` | Yes      | The business ID |
| `widgetId`   | `string` | Yes      | The widget ID   |

## Request example

```shell theme={null}
curl --request GET 'https://payments.bleepay.com/api/v1/businesses/biz_abc123/widgets/wdgt_abc' \
  --header 'Authorization: Bearer <business_token>'
```

## Response

Returns the full widget configuration object. See [Create Widget](/api-reference/widgets/management/create-widget) for the field schema.

```json theme={null}
{
  "id": "wdgt_abc",
  "name": "Checkout Widget",
  "mode": "CUSTOMER_AMOUNT",
  "minAmount": "1",
  "maxAmount": "1000",
  "allowedNetworks": ["polygon", "ethereum"],
  "allowedCurrencies": ["USDC", "EURC"],
  "enabled": true,
  "createdAt": "2026-06-09T12:00:00.000Z",
  "updatedAt": "2026-06-09T12:00:00.000Z"
}
```
