> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.
# GetAppRankingsResponse
## Example Usage
```typescript theme={null}
import { GetAppRankingsResponse } from "@openrouter/sdk/models/operations";
let value: GetAppRankingsResponse = {
result: {
data: [
{
appId: 12345,
appName: "Cline",
rank: 1,
totalRequests: 4321,
totalTokens: "12345678",
},
{
appId: 67890,
appName: "Roo Code",
rank: 2,
totalRequests: 2109,
totalTokens: "9876543",
},
],
meta: {
asOf: "2026-05-12T02:00:00.000Z",
endDate: "2026-05-11",
startDate: "2026-04-12",
version: "v1",
},
},
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------- | ------------------------------------------------------------------ | -------------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result` | [models.AppRankingsResponse](../../models/apprankingsresponse.mdx) | :heavy\_check\_mark: | N/A | \{
"data": \[
\{
"app\_id": 12345,
"app\_name": "Cline",
"rank": 1,
"total\_requests": 4321,
"total\_tokens": "12345678"
},
\{
"app\_id": 67890,
"app\_name": "Roo Code",
"rank": 2,
"total\_requests": 2109,
"total\_tokens": "9876543"
}
],
"meta": \{
"as\_of": "2026-05-12T02:00:00.000Z",
"end\_date": "2026-05-11",
"start\_date": "2026-04-12",
"version": "v1"
}
} |