BenchmarksDAResponse - TypeScript SDK
BenchmarksDAResponse - TypeScript SDK
BenchmarksDAResponse type definition
The TypeScript SDK and docs are currently in beta. Report issues on GitHub.
Example Usage
1 import { BenchmarksDAResponse } from "@openrouter/sdk/models"; 2 3 let value: BenchmarksDAResponse = { 4 data: [ 5 { 6 arena: "models", 7 avgGenerationTimeMs: 3200, 8 category: "codecategories", 9 displayName: "Claude Sonnet 4", 10 elo: 1423, 11 modelPermaslug: "anthropic/claude-sonnet-4", 12 pricing: { 13 completion: "0.000015", 14 prompt: "0.000003", 15 }, 16 tournamentStats: { 17 firstPlace: 12, 18 fourthPlace: 2, 19 secondPlace: 8, 20 thirdPlace: 5, 21 total: 27, 22 }, 23 winRate: 72, 24 }, 25 ], 26 meta: { 27 arena: "models", 28 asOf: "2026-06-03T12:00:00Z", 29 category: null, 30 citation: 31 "Source: Design Arena (www.designarena.ai) via OpenRouter (openrouter.ai/rankings).", 32 eloBounds: { 33 max: 1600, 34 min: 900, 35 }, 36 modelCount: 1, 37 source: "design-arena", 38 sourceUrl: "https://www.designarena.ai", 39 version: "v1", 40 }, 41 };
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
data | models.BenchmarksDAItem[] | ✔️ | N/A | |
meta | models.BenchmarksDAMeta | ✔️ | N/A | {"arena": "models","as_of": "2026-06-03T12:00:00Z","category": null,"citation": "Source: Design Arena (www.designarena.ai) via OpenRouter (openrouter.ai/rankings).","elo_bounds": {"max": 1600,"min": 900},“model_count”: 50, “source”: “design-arena”, “source_url”: “https://www.designarena.ai”, “version”: “v1” } |