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

# Integration Key

> Organization-level third-party provider key metadata

## TypeScript Types

```typescript theme={null}
type IntegrationProvider = 'fal' | 'openrouter';

interface IntegrationKey {
  id: string;
  provider: IntegrationProvider;
  maskedKey: string;
  created_at: string;
}
```

## Related Endpoints

* `POST /org/integration-key`
* `POST /org/integration-key/upsert`
* `POST /org/integration-key/delete`
