The TypeScript SDK and docs are currently in beta.
Report issues on GitHub.
Example Usage
import { CreateKeysRequest } from "@openrouter/sdk/models/operations";
let value: CreateKeysRequest = {
name: "My New API Key",
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
name | string | :heavy_check_mark: | Name for the new API key | My New API Key |
limit | number | :heavy_minus_sign: | Optional spending limit for the API key in USD | 50 |
limitReset | operations.CreateKeysLimitReset | :heavy_minus_sign: | Type of limit reset for the API key (daily, weekly, monthly, or null for no reset). Resets happen automatically at midnight UTC, and weeks are Monday through Sunday. | monthly |
includeByokInLimit | boolean | :heavy_minus_sign: | Whether to include BYOK usage in the limit | true |
expiresAt | Date | :heavy_minus_sign: | Optional ISO 8601 UTC timestamp when the API key should expire. Must be UTC, other timezones will be rejected | 2027-12-31T23:59:59Z |