---
url: /api/third-parties/stripe/types/domain/interface-stripe-settings.md
description: api documentation of StripeSettings from @tsed/stripe
---

## Usage

```typescript
import { StripeSettings } from "@tsed/stripe";
```

> See [/packages/third-parties/stripe/src/domain/StripeSettings.ts](https://github.com/tsedio/tsed/blob/v8.37.1/packages/third-parties/stripe/src/domain/StripeSettings.ts#L0-L0).

## Overview

```ts
interface StripeSettings extends Stripe.StripeConfig {
    apiKey: string;
    webhooks?: {
        secret: string;
        tolerance?: number;
    };
}
```

## apiKey

```ts
apiKey: string;
```

Stripe ApiKey

## webhooks

```ts
webhooks?: {
     secret: string;
     tolerance?: number;
 };
```

Webhooks settings
