SDK Reference (BETA)TypeScript SDKOperations
CreateKeysData - TypeScript SDK
CreateKeysData type definition
The TypeScript SDK and docs are currently in beta. Report issues on GitHub.
The created API key information
Example Usage
1 import { CreateKeysData } from "@openrouter/sdk/models/operations"; 2 3 let value: CreateKeysData = { 4 hash: 5 "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", 6 name: "My Production Key", 7 label: "Production API Key", 8 disabled: false, 9 limit: 100, 10 limitRemaining: 74.5, 11 limitReset: "monthly", 12 includeByokInLimit: false, 13 usage: 25.5, 14 usageDaily: 25.5, 15 usageWeekly: 25.5, 16 usageMonthly: 25.5, 17 byokUsage: 17.38, 18 byokUsageDaily: 17.38, 19 byokUsageWeekly: 17.38, 20 byokUsageMonthly: 17.38, 21 createdAt: "2025-08-24T10:30:00Z", 22 updatedAt: "2025-08-24T15:45:00Z", 23 };
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
hash | string | ✔️ | Unique hash identifier for the API key | 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 |
name | string | ✔️ | Name of the API key | My Production Key |
label | string | ✔️ | Human-readable label for the API key | Production API Key |
disabled | boolean | ✔️ | Whether the API key is disabled | false |
limit | number | ✔️ | Spending limit for the API key in USD | 100 |
limitRemaining | number | ✔️ | Remaining spending limit in USD | 74.5 |
limitReset | string | ✔️ | Type of limit reset for the API key | monthly |
includeByokInLimit | boolean | ✔️ | Whether to include external BYOK usage in the credit limit | false |
usage | number | ✔️ | Total OpenRouter credit usage (in USD) for the API key | 25.5 |
usageDaily | number | ✔️ | OpenRouter credit usage (in USD) for the current UTC day | 25.5 |
usageWeekly | number | ✔️ | OpenRouter credit usage (in USD) for the current UTC week (Monday-Sunday) | 25.5 |
usageMonthly | number | ✔️ | OpenRouter credit usage (in USD) for the current UTC month | 25.5 |
byokUsage | number | ✔️ | Total external BYOK usage (in USD) for the API key | 17.38 |
byokUsageDaily | number | ✔️ | External BYOK usage (in USD) for the current UTC day | 17.38 |
byokUsageWeekly | number | ✔️ | External BYOK usage (in USD) for the current UTC week (Monday-Sunday) | 17.38 |
byokUsageMonthly | number | ✔️ | External BYOK usage (in USD) for current UTC month | 17.38 |
createdAt | string | ✔️ | ISO 8601 timestamp of when the API key was created | 2025-08-24T10:30:00Z |
updatedAt | string | ✔️ | ISO 8601 timestamp of when the API key was last updated | 2025-08-24T15:45:00Z |