Contract
{
"type": "object",
"properties": {},
"additionalProperties": false
}{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"code_leaderboard": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "The model's current leaderboard position."
},
"votes": {
"type": "number",
"description": "Number of head-to-head votes backing this rating."
},
"rating": {
"type": "number",
"description": "Elo-style leaderboard rating."
},
"license": {
"type": "string",
"description": "e.g. 'Proprietary', 'MIT', 'Apache 2.0'."
},
"modelKey": {
"type": "string",
"description": "The provider's internal identifier for this model version."
},
"modelUrl": {
"type": [
"string",
"null"
],
"description": "The model publisher's own announcement/product page URL. Observed null on some rows in the real call; stripped before this tool ships its response (see responseShaping), listed here only so this schema covers every key the raw leaderboard row actually carries."
},
"rankLower": {
"type": "number",
"description": "Worst-case rank within the statistical confidence interval."
},
"rankUpper": {
"type": "number",
"description": "Best-case rank within the statistical confidence interval."
},
"ratingLower": {
"type": "number",
"description": "Lower bound of the rating's confidence interval."
},
"ratingUpper": {
"type": "number",
"description": "Upper bound of the rating's confidence interval."
},
"releaseType": {
"type": [
"string",
"null"
],
"description": "e.g. 'co_release', 'pre_release' for a model still in preview. Observed null for a generally-available model -- not always present."
},
"contextLength": {
"type": [
"number",
"null"
],
"description": "Maximum context window in tokens. Observed null for some models -- not always present."
},
"pricePerImage": {
"type": "null",
"description": "Always null on the real call observed -- this endpoint's two leaderboards (code, text) never carry image-output pricing."
},
"pricePerSecond": {
"type": "null",
"description": "Always null on the real call observed -- this endpoint's two leaderboards (code, text) never carry video/audio-output pricing."
},
"modelDisplayName": {
"type": "string",
"description": "The model's public display name, e.g. 'claude-opus-5-max'."
},
"modelOrganization": {
"type": "string",
"description": "The organization that publishes this model, e.g. 'OpenAI'."
},
"inputPricePerMillion": {
"type": [
"number",
"null"
],
"description": "USD per million input tokens. Observed null for models with no published per-token API pricing -- not always present."
},
"outputPricePerMillion": {
"type": [
"number",
"null"
],
"description": "USD per million output tokens. Observed null alongside a null inputPricePerMillion on the same models -- not always present."
}
},
"additionalProperties": false
},
"description": "Every model on the Code Arena leaderboard, in rank order. 128 entries on the real call observed; cardinality is not confirmed fixed at 128 going forward."
},
"text_leaderboard_snapshot": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "The model's current leaderboard position."
},
"votes": {
"type": "number",
"description": "Number of head-to-head votes backing this rating."
},
"rating": {
"type": "number",
"description": "Elo-style leaderboard rating."
},
"license": {
"type": "string",
"description": "e.g. 'Proprietary', 'MIT'."
},
"modelKey": {
"type": "string",
"description": "The provider's internal identifier for this model version."
},
"modelUrl": {
"type": [
"string",
"null"
],
"description": "The model publisher's own announcement/product page URL. Observed null on some rows in the real call; stripped before this tool ships its response (see responseShaping), listed here only so this schema covers every key the raw leaderboard row actually carries."
},
"rankLower": {
"type": "number",
"description": "Worst-case rank within the statistical confidence interval."
},
"rankUpper": {
"type": "number",
"description": "Best-case rank within the statistical confidence interval."
},
"ratingLower": {
"type": "number",
"description": "Lower bound of the rating's confidence interval."
},
"ratingUpper": {
"type": "number",
"description": "Upper bound of the rating's confidence interval."
},
"releaseType": {
"type": [
"string",
"null"
],
"description": "e.g. 'pre_release' for a model still in preview. Observed null for a generally-available model -- not always present."
},
"contextLength": {
"type": [
"number",
"null"
],
"description": "Maximum context window in tokens. Observed null for at least one model in this top-10 slice -- not always present."
},
"pricePerImage": {
"type": "null",
"description": "Always null on the real call observed -- this endpoint's two leaderboards (code, text) never carry image-output pricing."
},
"pricePerSecond": {
"type": "null",
"description": "Always null on the real call observed -- this endpoint's two leaderboards (code, text) never carry video/audio-output pricing."
},
"modelDisplayName": {
"type": "string",
"description": "The model's public display name, e.g. 'claude-fable-5'."
},
"modelOrganization": {
"type": "string",
"description": "The organization that publishes this model, e.g. 'Anthropic'."
},
"inputPricePerMillion": {
"type": [
"number",
"null"
],
"description": "USD per million input tokens. Not observed null in this top-10 slice, but typed nullable to match the identical field on code_leaderboard."
},
"outputPricePerMillion": {
"type": [
"number",
"null"
],
"description": "USD per million output tokens. Not observed null in this top-10 slice, but typed nullable to match the identical field on code_leaderboard."
}
},
"additionalProperties": false
},
"description": "The top 10 models on the separate Text Arena leaderboard, in rank order, for comparison against the code-focused leaderboard above. Exactly 10 entries on the real call observed. Same per-entry shape as code_leaderboard."
}
},
"additionalProperties": false
},
"status": {
"type": "string",
"description": "'success' on the real call observed."
}
},
"description": "The leaderboard snapshot, as returned at routing.responseResultPath ($.output).",
"additionalProperties": false
}Pricing
Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.
Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.
| Charge | Rate |
|---|---|
Per call Flat, regardless of what comes back | $0.01365 |
- Cost basis
- Not recorded
This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.
- Updated
- Sep 23, 2026
