The TypeScript SDK and docs are currently in beta.
Report issues on GitHub.
Example Usage
import { GetCurrentKeyData } from "@openrouter/sdk/models/operations";
let value: GetCurrentKeyData = {
byokUsage: 17.38,
byokUsageDaily: 17.38,
byokUsageMonthly: 17.38,
byokUsageWeekly: 17.38,
creatorUserId: "user_2dHFtVWx2n56w6HkM0000000000",
includeByokInLimit: false,
isFreeTier: false,
isManagementKey: false,
isProvisioningKey: false,
label: "sk-or-v1-au7...890",
limit: 100,
limitRemaining: 74.5,
limitReset: "monthly",
rateLimit: {
interval: "1h",
note: "This field is deprecated and safe to ignore.",
requests: 1000,
},
usage: 25.5,
usageDaily: 25.5,
usageMonthly: 25.5,
usageWeekly: 25.5,
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
byokUsage | number | :heavy_check_mark: | Total external BYOK usage (in USD) for the API key | 17.38 |
byokUsageDaily | number | :heavy_check_mark: | External BYOK usage (in USD) for the current UTC day | 17.38 |
byokUsageMonthly | number | :heavy_check_mark: | External BYOK usage (in USD) for current UTC month | 17.38 |
byokUsageWeekly | number | :heavy_check_mark: | External BYOK usage (in USD) for the current UTC week (Monday-Sunday) | 17.38 |
creatorUserId | string | :heavy_check_mark: | The user ID of the key creator. For organization-owned keys, this is the member who created the key. For individual users, this is the user’s own ID. | user_2dHFtVWx2n56w6HkM0000000000 |
expiresAt | Date | :heavy_minus_sign: | ISO 8601 UTC timestamp when the API key expires, or null if no expiration | 2027-12-31T23:59:59Z |
includeByokInLimit | boolean | :heavy_check_mark: | Whether to include external BYOK usage in the credit limit | false |
isFreeTier | boolean | :heavy_check_mark: | Whether this is a free tier API key | false |
isManagementKey | boolean | :heavy_check_mark: | Whether this is a management key | false |
isProvisioningKey | boolean | :heavy_check_mark: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Whether this is a management key | false |
label | string | :heavy_check_mark: | Human-readable label for the API key | sk-or-v1-0e6…1c96 |
limit | number | :heavy_check_mark: | Spending limit for the API key in USD | 100 |
limitRemaining | number | :heavy_check_mark: | Remaining spending limit in USD | 74.5 |
limitReset | string | :heavy_check_mark: | Type of limit reset for the API key | monthly |
rateLimit | operations.RateLimit | :heavy_check_mark: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Legacy rate limit information about a key. Will always return -1. | {"interval": "1h","note": "This field is deprecated and safe to ignore.","requests": 1000} |
usage | number | :heavy_check_mark: | Total OpenRouter credit usage (in USD) for the API key | 25.5 |
usageDaily | number | :heavy_check_mark: | OpenRouter credit usage (in USD) for the current UTC day | 25.5 |
usageMonthly | number | :heavy_check_mark: | OpenRouter credit usage (in USD) for the current UTC month | 25.5 |
usageWeekly | number | :heavy_check_mark: | OpenRouter credit usage (in USD) for the current UTC week (Monday-Sunday) | 25.5 |