{
  "openapi": "3.1.0",
  "info": {
    "title": "Prometheus API",
    "version": "1.0.0",
    "description": "Audit-grade financial data: SEC 10-K/10-Q/8-K filings parsed from XBRL into standardized statements where every number links back to its source fact; earnings-call transcripts turned into verified observations and guidance scorecards; a bitemporal (point-in-time) macro cube; benchmark, commodity and compute-price series; and a validated causal claim graph.\n\nTiers: `public` endpoints need no credentials. Everything else takes an **API key** — create one on the Developers page in the terminal (https://www.prometheus.services/developers) and send it as `X-API-KEY: pk_live_...` (or `Authorization: Bearer pk_live_...`). Signed-in terminal sessions may use their Cognito ID token instead.\n\nRate limits and quotas are per plan (fixed UTC windows): Free — 30 req/min, 250 req/day; Build ($200/mo) — 300 req/min, 100,000 req/month; Scale — custom. Responses carry RateLimit-* and X-Quota-* headers; a 429 carries `Retry-After` and a machine `code` of rate_limited or quota_exceeded.\n\nNot investment advice. See /terms.",
    "contact": {
      "email": "sales@prometheus.finance"
    },
    "termsOfService": "https://www.prometheus.services/terms"
  },
  "servers": [
    {
      "url": "https://www.prometheus.services"
    }
  ],
  "security": [],
  "tags": [
    {
      "name": "Search & Meta",
      "description": "Entity resolution and platform metadata."
    },
    {
      "name": "Company Data",
      "description": "Profiles, structure, leadership, calendars."
    },
    {
      "name": "Financial Statements",
      "description": "Standardized XBRL-derived statements — every line traceable to its filing via fact provenance."
    },
    {
      "name": "SEC Filings",
      "description": "The filing index and parsed section text."
    },
    {
      "name": "8-K Events",
      "description": "Material events, typed by family, with extracted item text."
    },
    {
      "name": "Transcripts & Calls",
      "description": "Earnings-call transcripts, span-anchored observations, IR decks."
    },
    {
      "name": "Guidance & Scorecards",
      "description": "What management promised vs. what happened."
    },
    {
      "name": "Ownership & Insiders",
      "description": "13F holders, Forms 3/4/5, the people registry."
    },
    {
      "name": "Macro",
      "description": "Point-in-time economic series and central-bank text."
    },
    {
      "name": "Market Data",
      "description": "Daily bars for stocks, benchmarks, commodities and compute."
    },
    {
      "name": "Intelligence",
      "description": "Narratives, the validated claim graph, scenario simulation."
    },
    {
      "name": "Analytics",
      "description": "Correlation and charting over any catalog series."
    }
  ],
  "components": {
    "securitySchemes": {
      "apiKey": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-KEY",
        "description": "Prometheus API key (pk_live_...), created on the Developers page in the terminal. Also accepted as `Authorization: Bearer pk_live_...`.",
        "x-default": "pk_live_YOUR_KEY"
      },
      "cognitoIdToken": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT",
        "description": "Amazon Cognito ID token (token_use=id) for the Prometheus user pool — the terminal's own session credential. API consumers should use an API key instead."
      }
    },
    "schemas": {
      "Error": {
        "type": "object",
        "required": [
          "error"
        ],
        "properties": {
          "error": {
            "type": "string",
            "description": "Human-readable message."
          },
          "code": {
            "type": "string",
            "description": "Stable machine code when present: unauthenticated, upgrade_required, rate_limited, quota_exceeded.",
            "enum": [
              "unauthenticated",
              "upgrade_required",
              "rate_limited",
              "quota_exceeded"
            ]
          }
        }
      },
      "Transformation": {
        "type": "string",
        "enum": [
          "none",
          "pct_change",
          "yoy_pct_change",
          "first_difference",
          "log",
          "z_score",
          "rolling_volatility"
        ]
      },
      "SeriesDescriptor": {
        "description": "A series for the correlation engine. Valid companyId / indicatorCode / symbol values come from GET /api/v1/correlation/catalog — anything not in the catalog returns 404.",
        "oneOf": [
          {
            "type": "object",
            "required": [
              "type",
              "companyId",
              "priceField"
            ],
            "properties": {
              "type": {
                "const": "stock_price"
              },
              "companyId": {
                "type": "string",
                "description": "Catalog companyId (ticker), from /correlation/catalog prices.companies."
              },
              "priceField": {
                "type": "string",
                "enum": [
                  "close",
                  "adj_close",
                  "volume"
                ]
              }
            }
          },
          {
            "type": "object",
            "required": [
              "type",
              "indicatorCode"
            ],
            "properties": {
              "type": {
                "const": "macro"
              },
              "indicatorCode": {
                "type": "string",
                "description": "From /correlation/catalog macro[].indicatorCode."
              }
            }
          },
          {
            "type": "object",
            "required": [
              "type",
              "companyId",
              "metric",
              "periodBasis"
            ],
            "properties": {
              "type": {
                "const": "company_fundamental"
              },
              "companyId": {
                "type": "string"
              },
              "metric": {
                "type": "string",
                "description": "From /correlation/catalog fundamentals.metrics[].key."
              },
              "periodBasis": {
                "type": "string",
                "enum": [
                  "annual",
                  "quarterly"
                ]
              }
            }
          },
          {
            "type": "object",
            "description": "Index / commodity price kinds — see /correlation/catalog for symbols.",
            "additionalProperties": true
          }
        ]
      },
      "ChartSeriesDescriptor": {
        "description": "What to chart. Symbol/indicator/metric vocabularies are served by /api/v1/correlation/catalog.",
        "oneOf": [
          {
            "type": "object",
            "required": [
              "type",
              "indicatorCode"
            ],
            "properties": {
              "type": {
                "const": "macro"
              },
              "indicatorCode": {
                "type": "string"
              }
            }
          },
          {
            "type": "object",
            "required": [
              "type",
              "companyId",
              "metric",
              "periodBasis"
            ],
            "properties": {
              "type": {
                "const": "company_fundamental"
              },
              "companyId": {
                "type": "string"
              },
              "metric": {
                "type": "string"
              },
              "periodBasis": {
                "type": "string",
                "enum": [
                  "annual",
                  "quarterly"
                ]
              }
            }
          },
          {
            "type": "object",
            "required": [
              "type",
              "companyId",
              "priceField"
            ],
            "properties": {
              "type": {
                "const": "stock_price"
              },
              "companyId": {
                "type": "string"
              },
              "priceField": {
                "type": "string",
                "enum": [
                  "close",
                  "adj_close",
                  "volume"
                ]
              }
            }
          },
          {
            "type": "object",
            "required": [
              "type",
              "symbol",
              "priceField"
            ],
            "properties": {
              "type": {
                "const": "index_price"
              },
              "symbol": {
                "type": "string"
              },
              "priceField": {
                "type": "string",
                "enum": [
                  "close",
                  "adj_close",
                  "volume"
                ]
              }
            }
          },
          {
            "type": "object",
            "required": [
              "type",
              "symbol"
            ],
            "properties": {
              "type": {
                "const": "commodity_price"
              },
              "symbol": {
                "type": "string"
              }
            }
          }
        ]
      }
    }
  },
  "paths": {
    "/api/health": {
      "get": {
        "summary": "Health check",
        "description": "Liveness probe.",
        "operationId": "get-health-check",
        "tags": [
          "Search & Meta"
        ],
        "x-tier": "public",
        "security": [],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/landing/stats": {
      "get": {
        "summary": "Coverage stats",
        "description": "Headline coverage numbers shown on the landing page (companies, filings, facts).",
        "operationId": "get-coverage-stats",
        "tags": [
          "Search & Meta"
        ],
        "x-tier": "public",
        "security": [],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "economies": 1,
                  "companies": 496,
                  "observations": 682140,
                  "narratives": 2521
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/search": {
      "get": {
        "summary": "Search",
        "description": "Global search across companies, macro series and countries.",
        "operationId": "get-search",
        "tags": [
          "Search & Meta"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Search text.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "1–20, default 8.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "query": "nvidia",
                  "companies": [
                    {
                      "ticker": "NVDA",
                      "name": "NVIDIA CORP",
                      "exchange": "Nasdaq",
                      "countryCode": "US",
                      "sector": "Technology",
                      "score": 100
                    }
                  ],
                  "series": [],
                  "countries": []
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/me": {
      "get": {
        "summary": "Who am I",
        "description": "The calling key's account, plan, limits and live usage — the only account surface an API key can read. Returns the key's display prefix (never the secret), effective plan, per-minute/day/month limits and how much of each remains.",
        "operationId": "get-who-am-i",
        "tags": [
          "Search & Meta"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "key": {
                    "prefix": "pk_live_YOUR",
                    "name": "laptop",
                    "createdAt": "2026-08-23T14:02:11.000Z",
                    "lastUsedAt": "2026-08-23T18:40:03.000Z",
                    "expiresAt": null
                  },
                  "account": {
                    "email": "dev@example.com",
                    "via": "api_key"
                  },
                  "plan": {
                    "slug": "build",
                    "name": "Build",
                    "perMinute": 300,
                    "perDay": null,
                    "monthlyQuota": 100000,
                    "purchasable": true,
                    "display": {
                      "price": "$200",
                      "period": "/mo",
                      "blurb": "For production. 300 requests/min, 100,000 requests/month."
                    }
                  },
                  "rate": {
                    "limit": 300,
                    "remaining": 299,
                    "resetsAt": "2026-08-23T18:41:00.000Z"
                  },
                  "today": null,
                  "quota": {
                    "limit": 100000,
                    "used": 4812,
                    "remaining": 95188,
                    "resetsAt": "2026-09-01T00:00:00.000Z"
                  },
                  "upgradeUrl": null
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies": {
      "get": {
        "summary": "List companies",
        "description": "List covered companies.",
        "operationId": "get-list-companies",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "sector",
            "in": "query",
            "description": "Filter by sector name.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "1–1000, default 100.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Default 0.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "companies": [
                    {
                      "id": "3dc3b782-6b1c-455e-80ff-d4e8f07a09f3",
                      "name": "NVIDIA CORP",
                      "legal_name": "NVIDIA CORP",
                      "cik": "0001045810",
                      "ticker": "NVDA",
                      "exchange": "N/A",
                      "country_code": "US",
                      "sector": "Technology",
                      "industry": "Semiconductors",
                      "price": 214.72,
                      "change_percent": -0.982248,
                      "volume": 91591112,
                      "market_cap": 5200733120000,
                      "pe_ratio": 32.8821,
                      "logo_png_s3_key": "logos/cik=0001045810/512.png",
                      "website": "https://www.nvidia.com",
                      "brand_mark": "https://cdn.brandfetch.io/nvidia.com/icon?c=1idQJ_8ukVnXwK_PLYs&fallback=404",
                      "share_classes": null
                    },
                    {
                      "id": "33c210d5-7e67-436a-b240-96ba73998b12",
                      "name": "Apple Inc.",
                      "legal_name": "Apple Inc.",
                      "cik": "0000320193",
                      "ticker": "AAPL",
                      "exchange": "N/A",
                      "country_code": "US",
                      "sector": "Technology",
                      "industry": "Consumer Electronics",
                      "price": 309.35,
                      "change_percent": -0.6264,
                      "volume": 42216056,
                      "market_cap": 4519282704050,
                      "pe_ratio": 35.5166,
                      "logo_png_s3_key": "logos/cik=0000320193/512.png",
                      "website": "https://www.apple.com",
                      "brand_mark": "https://cdn.brandfetch.io/apple.com/icon?c=1idQJ_8ukVnXwK_PLYs&fallback=404",
                      "share_classes": null
                    },
                    {
                      "id": "9d155aca-6efd-4b57-aff2-188dc063a1d5",
                      "name": "Alphabet Inc.",
                      "legal_name": "Alphabet Inc.",
                      "cik": "0001652044",
                      "ticker": "GOOGL",
                      "exchange": "N/A",
                      "country_code": "US",
                      "sector": "Communication Services",
                      "industry": "Internet Content & Information",
                      "price": 344.82,
                      "change_percent": 1.21819,
                      "volume": 20779426,
                      "market_cap": 4200180710000,
                      "pe_ratio": 17.1994,
                      "logo_png_s3_key": "logos/cik=0001652044/512.png",
                      "website": "https://about.google/",
                      "brand_mark": "https://cdn.brandfetch.io/google.com/icon?c=1idQJ_8ukVnXwK_PLYs&fallback=404",
                      "share_classes": [
                        {
                          "symbol": "GOOGL",
                          "price": 344.82,
                          "change_percent": 1.21819,
                          "is_primary": true
                        },
                        {
                          "symbol": "GOOG",
                          "price": 341.75,
                          "change_percent": 1.04967,
                          "is_primary": false
                        }
                      ]
                    }
                  ],
                  "total": 490
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/sparklines": {
      "get": {
        "summary": "Price sparklines",
        "description": "Compact price sparklines for a set of tickers.",
        "operationId": "get-price-sparklines",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "tickers",
            "in": "query",
            "description": "Comma-separated ticker list.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}": {
      "get": {
        "summary": "Company profile",
        "description": "Company profile: identity, sector, latest filing, quote, key metrics, corporate lineage.",
        "operationId": "get-company-profile",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "company": {
                    "id": "69d1debf-37a7-4959-b4e5-6030b5ac1a84",
                    "name": "NVIDIA CORP",
                    "legal_name": "NVIDIA CORP",
                    "symbol": "NVDA",
                    "ticker": "NVDA",
                    "cik": "0001045810",
                    "country_code": "US",
                    "logoUrl": "/api/v1/companies/NVDA/logo",
                    "brandMark": "https://cdn.brandfetch.io/nvidia.com/icon?c=1idQJ_8ukVnXwK_PLYs&fallback=404",
                    "domain": "https://www.nvidia.com",
                    "secondary_offerings": [],
                    "subsidiaries": [],
                    "parent_registrant": null,
                    "lineage_events": [],
                    "price": 214.72,
                    "change": -2.13,
                    "changePercent": -0.982248,
                    "afterHoursPrice": 215.38,
                    "afterHoursChange": 0.660004,
                    "afterHoursChangePercent": 0.307379,
                    "prevClose": 216.85,
                    "open": 218.42,
                    "dayHigh": 218.74,
                    "dayLow": 214.5,
                    "marketCap": "$5.20T",
                    "marketCapFull": "5,200,733,011,968",
                    "volume": "91.59M",
                    "avgVolume": "141.32M",
                    "range52w": "164.07 – 236.54",
                    "sector": "Technology",
                    "industry": "Semiconductors",
                    "country": "US",
                    "exchange": "N/A",
                    "description": "NVIDIA Corporation operates as a data center scale AI infrastructure company in …",
                    "ipoDate": "Jan 22, 1999",
                    "ceo": "Jen-Hsun Huang",
                    "employees": "42,000",
                    "float": "23.23B shares",
                    "peRatio": 32.8821,
                    "dividendYield": 0.46,
                    "beta": 2.215,
                    "eps": 6.53,
                    "revenue": 81615000000,
                    "statistics": {
                      "fundamentalsAsOf": "2026-04-26",
                      "enterpriseValue": 5158868120000,
                      "sharesOutstanding": 24221000000,
                      "ttmRevenue": 253491000000,
                      "grossMargin": 74.1454,
                      "ebitdaMargin": 65.2938,
                      "operatingMargin": 64.02,
                      "preTaxMargin": 74.7336,
                      "netMargin": 62.9659,
                      "fcfMargin": 46.9744,
                      "roa": 61.5141,
                      "roe": 81.6543,
                      "roce": 75.2748,
                      "roic": 89.0126,
                      "peTtm": 32.8821,
                      "pb": 26.6058,
                      "evSales": 20.3513,
                      "evEbitda": 31.1688,
                      "pFcf": 43.6757,
                      "evGrossProfit": 27.4478,
                      "priceTarget": 304.1207,
                      "peNtm": 16.4823,
                      "peg": 0.5973,
                      "cash": 50335000000,
                      "netDebt": -41865000000,
                      "debtEquity": 0.0433,
                      "ebitInterest": 544.5805,
                      "revGrowthYoY": 70.6838,
                      "epsGrowthYoY": 109.9678,
                      "revCagr3y": 100.0451,
                      "epsCagr3y": 204.2395,
                      "payout": 0.6096,
                      "dps": 0.040207,
                      "calc": {
                        "peTtm": {
                          "formula": "Price ÷ EPS (TTM, diluted)",
                          "inputs": [
                            {
                              "label": "Price",
                              "value": 214.72,
                              "format": "price",
                              "qualifier": "primary listing; fresher of latest close vs live quote"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "ev": {
                          "formula": "Market Cap + Total Debt − Cash & ST Investments",
                          "inputs": [
                            {
                              "label": "Market Cap",
                              "value": 5200733120000,
                              "format": "currency"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "ttmRevenue": {
                          "formula": "Sum of the last 4 fiscal quarters' revenue",
                          "inputs": [
                            {
                              "label": "Revenue (TTM)",
                              "value": 253491000000,
                              "format": "currency"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "grossMargin": {
                          "formula": "Gross Profit (TTM) ÷ Revenue (TTM)",
                          "inputs": [
                            {
                              "label": "Gross Profit (TTM)",
                              "value": 187952000000,
                              "format": "currency"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "ebitdaMargin": {
                          "formula": "EBITDA (TTM) ÷ Revenue (TTM)",
                          "inputs": [
                            {
                              "label": "EBITDA (TTM)",
                              "value": 165514000000,
                              "format": "currency"
                            }
                          ],
                          "note": "EBITDA = operating income + depreciation & amortization. TTM = sum of the last 4…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "operatingMargin": {
                          "formula": "Operating Income (TTM) ÷ Revenue (TTM)",
                          "inputs": [
                            {
                              "label": "Operating Income (TTM)",
                              "value": 162285000000,
                              "format": "currency"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "preTaxMargin": {
                          "formula": "Pre-Tax Income (TTM) ÷ Revenue (TTM)",
                          "inputs": [
                            {
                              "label": "Pre-Tax Income (TTM)",
                              "value": 189443000000,
                              "format": "currency"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "netMargin": {
                          "formula": "Net Income (TTM) ÷ Revenue (TTM)",
                          "inputs": [
                            {
                              "label": "Net Income (TTM)",
                              "value": 159613000000,
                              "format": "currency"
                            }
                          ],
                          "note": "Net income attributable to shareholders (ties out to diluted EPS). TTM = sum of …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "fcfMargin": {
                          "formula": "Free Cash Flow (TTM) ÷ Revenue (TTM)",
                          "inputs": [
                            {
                              "label": "Free Cash Flow (TTM)",
                              "value": 119076000000,
                              "format": "currency"
                            }
                          ],
                          "note": "FCF = operating cash flow − capital expenditures. TTM = sum of the last 4 distin…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "roa": {
                          "formula": "Net Income (TTM) ÷ Total Assets",
                          "inputs": [
                            {
                              "label": "Net Income (TTM)",
                              "value": 159613000000,
                              "format": "currency"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "roe": {
                          "formula": "Net Income (TTM) ÷ Shareholders' Equity",
                          "inputs": [
                            {
                              "label": "Net Income (TTM)",
                              "value": 159613000000,
                              "format": "currency"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "roce": {
                          "formula": "Operating Income (TTM) ÷ (Total Assets − Current Liabilities)",
                          "inputs": [
                            {
                              "label": "Operating Income (TTM)",
                              "value": 162285000000,
                              "format": "currency"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "roic": {
                          "formula": "NOPAT ÷ (Total Debt + Equity − Cash & ST Inv)",
                          "inputs": [
                            {
                              "label": "Operating Income (TTM)",
                              "value": 162285000000,
                              "format": "currency",
                              "qualifier": "NOPAT before tax"
                            }
                          ],
                          "note": "NOPAT = operating income × (1 − TTM effective tax rate, clamped to 0–50%); effec…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "pb": {
                          "formula": "Market Cap ÷ Shareholders' Equity",
                          "inputs": [
                            {
                              "label": "Market Cap",
                              "value": 5200733120000,
                              "format": "currency"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "evSales": {
                          "formula": "Enterprise Value ÷ Revenue (TTM)",
                          "inputs": [
                            {
                              "label": "Enterprise Value",
                              "value": 5158868120000,
                              "format": "currency"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "evEbitda": {
                          "formula": "Enterprise Value ÷ EBITDA (TTM)",
                          "inputs": [
                            {
                              "label": "Enterprise Value",
                              "value": 5158868120000,
                              "format": "currency"
                            }
                          ],
                          "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "pFcf": {
                          "formula": "Market Cap ÷ Free Cash Flow (TTM)",
                          "inputs": [
                            {
                              "label": "Market Cap",
                              "value": 5200733120000,
                              "format": "currency"
                            }
                          ],
                          "note": "Shown only when FCF is positive. TTM = sum of the last 4 distinct fiscal quarter…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "evGrossProfit": {
                          "formula": "Enterprise Value ÷ Gross Profit (TTM)",
                          "inputs": [
                            {
                              "label": "Enterprise Value",
                              "value": 5158868120000,
                              "format": "currency"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "cash": {
                          "formula": "Cash & Equivalents + Short-Term Investments",
                          "inputs": [
                            {
                              "label": "Cash & ST Investments",
                              "value": 50335000000,
                              "format": "currency"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "netDebt": {
                          "formula": "Total Debt − Cash & ST Investments",
                          "inputs": [
                            {
                              "label": "Total Debt",
                              "value": 8470000000,
                              "format": "currency",
                              "qualifier": "long-term debt incl. current portion"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "debtEquity": {
                          "formula": "Total Debt ÷ Shareholders' Equity",
                          "inputs": [
                            {
                              "label": "Total Debt",
                              "value": 8470000000,
                              "format": "currency"
                            }
                          ],
                          "note": "Balance-sheet figures are from the latest filed balance sheet (period end 2026-0…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "ebitInterest": {
                          "formula": "Operating Income (TTM) ÷ Interest Expense (TTM)",
                          "inputs": [
                            {
                              "label": "Operating Income (TTM)",
                              "value": 162285000000,
                              "format": "currency"
                            }
                          ],
                          "note": "Shown only when interest expense is positive. TTM = sum of the last 4 distinct f…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "revGrowthYoY": {
                          "formula": "(Revenue TTM − prior-year Revenue TTM) ÷ prior-year Revenue TTM",
                          "inputs": [
                            {
                              "label": "Revenue (TTM)",
                              "value": 253491000000,
                              "format": "currency"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "epsGrowthYoY": {
                          "formula": "(EPS TTM − prior-year EPS TTM) ÷ prior-year EPS TTM",
                          "inputs": [
                            {
                              "label": "EPS (TTM)",
                              "value": 6.53,
                              "format": "per_share",
                              "qualifier": "diluted, split-adjusted"
                            }
                          ],
                          "note": "TTM = sum of the last 4 distinct fiscal quarters as known on the metric date (a …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "revCagr3y": {
                          "formula": "(FY Revenue ÷ FY-3 Revenue)^(1/3) − 1",
                          "inputs": [],
                          "note": "Compound annual growth across the last 3 completed fiscal years, from as-filed a…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "epsCagr3y": {
                          "formula": "(FY diluted EPS ÷ FY-3 diluted EPS)^(1/3) − 1",
                          "inputs": [],
                          "note": "Compound annual growth across the last 3 completed fiscal years; each year's dil…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "payout": {
                          "formula": "Dividends Paid (TTM) ÷ Net Income (TTM)",
                          "inputs": [
                            {
                              "label": "Dividends Paid (TTM)",
                              "value": 973000848.0000001,
                              "format": "currency",
                              "qualifier": "cash dividends from the cash-flow statement (implied)"
                            }
                          ],
                          "note": "Shown only when net income is positive. TTM = sum of the last 4 distinct fiscal …",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        },
                        "dps": {
                          "formula": "Dividends Paid (TTM) ÷ Shares Outstanding",
                          "inputs": [
                            {
                              "label": "Dividends per Share (TTM)",
                              "value": 0.040207,
                              "format": "per_share",
                              "qualifier": "split-adjusted"
                            }
                          ],
                          "note": "Cash dividends from the cash-flow statement. TTM = sum of the last 4 distinct fi…",
                          "asOf": "price as of 2026-08-21 · fundamentals through 2026-04-26"
                        }
                      }
                    },
                    "business_summary": "NVIDIA Corporation operates as a data center scale AI infrastructure company in …",
                    "employee_count": 42000,
                    "incorporation_date": null,
                    "net_income": 18775000000,
                    "total_assets": 206803000000,
                    "total_equity": 79327000000,
                    "shares_outstanding": 24221000000,
                    "latest_filing": {
                      "fiscal_year": 2027,
                      "fiscal_quarter": 1,
                      "period_end_date": "2026-04-26T07:00:00.000Z",
                      "filing_type": "10-Q"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/logo": {
      "get": {
        "summary": "Company logo",
        "description": "Company emblem image.",
        "operationId": "get-company-logo",
        "tags": [
          "Company Data"
        ],
        "x-tier": "public",
        "security": [],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "image/*": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/financials": {
      "get": {
        "summary": "Financial statements",
        "description": "Standardized income statement, balance sheet and cash flow lines built from XBRL facts, each traceable to its source fact.",
        "operationId": "get-financial-statements",
        "tags": [
          "Financial Statements"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "period_type",
            "in": "query",
            "description": "annual or quarterly.",
            "schema": {
              "type": "string",
              "enum": [
                "annual",
                "quarterly"
              ],
              "default": "annual"
            }
          },
          {
            "name": "reporting_basis",
            "in": "query",
            "description": "as_reported returns the originally filed vintage; default is latest restated.",
            "schema": {
              "type": "string",
              "enum": [
                "as_reported",
                "restated"
              ]
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Default 200.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "company_id": "NVDA",
                  "period_type": "quarterly",
                  "reporting_basis": "individual",
                  "financials": {
                    "income_statement": {
                      "data": {
                        "std:revenue": {
                          "label": "Total Revenue",
                          "values": {
                            "Q1 2025": 26044000000,
                            "Q2 2025": 30040000000,
                            "Q3 2025": 35082000000,
                            "Q1 2026": 44062000000,
                            "Q2 2026": 46743000000,
                            "Q3 2026": 57006000000,
                            "Q4 2026": 68127000000,
                            "Q1 2027": 81615000000
                          },
                          "sort_order": 0,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:Revenues": {
                          "label": "Revenues",
                          "values": {
                            "Q1 2026": 44062000000,
                            "Q1 2027": 81615000000,
                            "Q3 2025": 35082000000,
                            "Q3 2026": 57006000000,
                            "Q2 2025": 30040000000,
                            "Q2 2026": 46743000000,
                            "Q1 2025": 26044000000,
                            "Q4 2026": 68127000000
                          },
                          "sort_order": 1,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:revenue"
                        },
                        "std:cost_of_revenue": {
                          "label": "Cost of Revenue",
                          "values": {
                            "Q1 2025": 5638000000,
                            "Q2 2025": 7466000000,
                            "Q3 2025": 8926000000,
                            "Q1 2026": 17394000000,
                            "Q2 2026": 12890000000,
                            "Q3 2026": 15157000000,
                            "Q4 2026": 17034000000,
                            "Q1 2027": 20458000000
                          },
                          "sort_order": 2,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:CostOfRevenue": {
                          "label": "Cost of Revenue",
                          "values": {
                            "Q1 2026": 17394000000,
                            "Q1 2027": 20458000000,
                            "Q3 2025": 8926000000,
                            "Q3 2026": 15157000000,
                            "Q2 2025": 7466000000,
                            "Q2 2026": 12890000000,
                            "Q1 2025": 5638000000,
                            "Q4 2026": 17034000000
                          },
                          "sort_order": 3,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cost_of_revenue"
                        },
                        "std:gross_profit": {
                          "label": "Gross Profit",
                          "values": {
                            "Q1 2025": 20406000000,
                            "Q2 2025": 22574000000,
                            "Q3 2025": 26156000000,
                            "Q1 2026": 26668000000,
                            "Q2 2026": 33853000000,
                            "Q3 2026": 41849000000,
                            "Q4 2026": 51093000000,
                            "Q1 2027": 61157000000
                          },
                          "sort_order": 4,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:GrossProfit": {
                          "label": "Gross Profit",
                          "values": {
                            "Q1 2026": 26668000000,
                            "Q1 2027": 61157000000,
                            "Q3 2025": 26156000000,
                            "Q3 2026": 41849000000,
                            "Q2 2025": 22574000000,
                            "Q2 2026": 33853000000,
                            "Q1 2025": 20406000000,
                            "Q4 2026": 51093000000
                          },
                          "sort_order": 5,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:gross_profit"
                        },
                        "std:gross_margin": {
                          "label": "Gross Margin",
                          "values": {
                            "Q1 2025": 0.7835201965903855,
                            "Q2 2025": 0.7514647137150466,
                            "Q3 2025": 0.7455675275069836,
                            "Q1 2026": 0.6052380736235304,
                            "Q2 2026": 0.724236784117408,
                            "Q3 2026": 0.7341157071185489,
                            "Q4 2026": 0.7499669734466511,
                            "Q1 2027": 0.749335293757275
                          },
                          "sort_order": 6,
                          "depth": 1,
                          "is_header": false,
                          "percent": true,
                          "no_scale": true,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:rnd": {
                          "label": "Research & Development",
                          "values": {
                            "Q1 2025": 2720000000,
                            "Q2 2025": 3090000000,
                            "Q3 2025": 3390000000,
                            "Q1 2026": 3989000000,
                            "Q2 2026": 4291000000,
                            "Q3 2026": 4705000000,
                            "Q4 2026": 5512000000,
                            "Q1 2027": 6321000000
                          },
                          "sort_order": 7,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:ResearchAndDevelopmentExpense": {
                          "label": "Research and Development Expense",
                          "values": {
                            "Q1 2026": 3989000000,
                            "Q1 2027": 6321000000,
                            "Q3 2025": 3390000000,
                            "Q3 2026": 4705000000,
                            "Q2 2025": 3090000000,
                            "Q2 2026": 4291000000,
                            "Q1 2025": 2720000000,
                            "Q4 2026": 5512000000
                          },
                          "sort_order": 8,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:rnd"
                        },
                        "std:sga": {
                          "label": "Selling, General & Administrative",
                          "values": {
                            "Q1 2025": 777000000,
                            "Q2 2025": 842000000,
                            "Q3 2025": 897000000,
                            "Q1 2026": 1041000000,
                            "Q2 2026": 1122000000,
                            "Q3 2026": 1134000000,
                            "Q4 2026": 1282000000,
                            "Q1 2027": 1300000000
                          },
                          "sort_order": 9,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:SellingGeneralAndAdministrativeExpense": {
                          "label": "Selling, General and Administrative Expense",
                          "values": {
                            "Q1 2026": 1041000000,
                            "Q1 2027": 1300000000,
                            "Q3 2025": 897000000,
                            "Q3 2026": 1134000000,
                            "Q2 2025": 842000000,
                            "Q2 2026": 1122000000,
                            "Q1 2025": 777000000,
                            "Q4 2026": 1282000000
                          },
                          "sort_order": 10,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:sga"
                        },
                        "std:other_opex": {
                          "label": "Other Operating Expenses",
                          "values": {},
                          "sort_order": 11,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:operating_income": {
                          "label": "Operating Income",
                          "values": {
                            "Q1 2025": 16909000000,
                            "Q2 2025": 18642000000,
                            "Q3 2025": 21869000000,
                            "Q1 2026": 21638000000,
                            "Q2 2026": 28440000000,
                            "Q3 2026": 36010000000,
                            "Q4 2026": 44299000000,
                            "Q1 2027": 53536000000
                          },
                          "sort_order": 12,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:OperatingExpenses": {
                          "label": "Operating Expenses",
                          "values": {
                            "Q1 2026": 5030000000,
                            "Q1 2027": 7621000000,
                            "Q3 2025": 4287000000,
                            "Q3 2026": 5839000000,
                            "Q2 2025": 3932000000,
                            "Q2 2026": 5413000000,
                            "Q1 2025": 3497000000,
                            "Q4 2026": 6794000000
                          },
                          "sort_order": 13,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:operating_income"
                        },
                        "us-gaap:OperatingIncomeLoss": {
                          "label": "Operating Income (Loss)",
                          "values": {
                            "Q1 2026": 21638000000,
                            "Q1 2027": 53536000000,
                            "Q3 2025": 21869000000,
                            "Q3 2026": 36010000000,
                            "Q2 2025": 18642000000,
                            "Q2 2026": 28440000000,
                            "Q1 2025": 16909000000,
                            "Q4 2026": 44299000000
                          },
                          "sort_order": 14,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:operating_income"
                        },
                        "std:operating_margin": {
                          "label": "Operating Margin",
                          "values": {
                            "Q1 2025": 0.6492474274305022,
                            "Q2 2025": 0.620572569906791,
                            "Q3 2025": 0.6233681090017673,
                            "Q1 2026": 0.49108074985248057,
                            "Q2 2026": 0.6084333483088377,
                            "Q3 2026": 0.6316878925025436,
                            "Q4 2026": 0.6502414608011508,
                            "Q1 2027": 0.6559578508852539
                          },
                          "sort_order": 15,
                          "depth": 1,
                          "is_header": false,
                          "percent": true,
                          "no_scale": true,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:interest_income": {
                          "label": "Interest Income",
                          "values": {
                            "Q1 2025": 359000000,
                            "Q2 2025": 444000000,
                            "Q3 2025": 472000000,
                            "Q1 2026": 515000000,
                            "Q2 2026": 592000000,
                            "Q3 2026": 624000000,
                            "Q4 2026": 569000000,
                            "Q1 2027": 540000000
                          },
                          "sort_order": 16,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:InvestmentIncomeInterest": {
                          "label": "Investment Income, Interest",
                          "values": {
                            "Q1 2026": 515000000,
                            "Q1 2027": 540000000,
                            "Q3 2025": 472000000,
                            "Q3 2026": 624000000,
                            "Q2 2025": 444000000,
                            "Q2 2026": 592000000,
                            "Q1 2025": 359000000,
                            "Q4 2026": 568000000
                          },
                          "sort_order": 17,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:interest_income"
                        },
                        "std:interest_expense": {
                          "label": "Interest Expense",
                          "values": {
                            "Q1 2025": -64000000,
                            "Q2 2025": -61000000,
                            "Q3 2025": -61000000,
                            "Q1 2026": -63000000,
                            "Q2 2026": -62000000,
                            "Q3 2026": -61000000,
                            "Q4 2026": -73000000,
                            "Q1 2027": -102000000
                          },
                          "sort_order": 18,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:InterestExpenseNonoperating": {
                          "label": "Interest Expense, Nonoperating",
                          "values": {
                            "Q1 2026": -63000000,
                            "Q1 2027": -102000000,
                            "Q3 2025": -61000000,
                            "Q3 2026": -61000000,
                            "Q2 2025": -61000000,
                            "Q2 2026": -62000000,
                            "Q1 2025": -64000000,
                            "Q4 2026": -73000000
                          },
                          "sort_order": 19,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "merged_from": [
                            "Interest Expense"
                          ],
                          "parent_key": "std:interest_expense"
                        },
                        "std:other_nonoperating": {
                          "label": "Other Non-Operating Income (Expense)",
                          "values": {
                            "Q1 2025": 75000000,
                            "Q2 2025": 189000000,
                            "Q3 2025": 36000000,
                            "Q1 2026": -180000000,
                            "Q2 2026": 2236000000,
                            "Q3 2026": 1363000000,
                            "Q4 2026": 5603000000,
                            "Q1 2027": 15929000000
                          },
                          "sort_order": 20,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:OtherNonoperatingIncomeExpense": {
                          "label": "Other Nonoperating Income (Expense)",
                          "values": {
                            "Q1 2026": -180000000,
                            "Q1 2027": 15929000000,
                            "Q3 2025": 36000000,
                            "Q3 2026": 1363000000,
                            "Q2 2025": 189000000,
                            "Q2 2026": 2236000000,
                            "Q1 2025": 75000000,
                            "Q4 2026": 5604000000
                          },
                          "sort_order": 21,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_nonoperating"
                        },
                        "std:total_nonoperating": {
                          "label": "Total Non-Operating Income (Expense)",
                          "values": {
                            "Q1 2025": 370000000,
                            "Q2 2025": 572000000,
                            "Q3 2025": 447000000,
                            "Q1 2026": 272000000,
                            "Q2 2026": 2766000000,
                            "Q3 2026": 1926000000,
                            "Q4 2026": 6099000000,
                            "Q1 2027": 16367000000
                          },
                          "sort_order": 22,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:NonoperatingIncomeExpense": {
                          "label": "Nonoperating Income (Expense)",
                          "values": {
                            "Q1 2026": 272000000,
                            "Q1 2027": 16367000000,
                            "Q3 2025": 447000000,
                            "Q3 2026": 1926000000,
                            "Q2 2025": 572000000,
                            "Q2 2026": 2766000000,
                            "Q1 2025": 370000000,
                            "Q4 2026": 6099000000
                          },
                          "sort_order": 23,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_nonoperating"
                        },
                        "std:pretax_income": {
                          "label": "Pretax Income",
                          "values": {
                            "Q1 2025": 17279000000,
                            "Q2 2025": 19214000000,
                            "Q3 2025": 22316000000,
                            "Q1 2026": 21910000000,
                            "Q2 2026": 31206000000,
                            "Q3 2026": 37936000000,
                            "Q4 2026": 50398000000,
                            "Q1 2027": 69903000000
                          },
                          "sort_order": 24,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesExtraordinaryItemsNoncontrollingInterest": {
                          "label": "Income (Loss) from Continuing Operations before Income Taxes, Noncontrolling Int…",
                          "values": {
                            "Q1 2026": 21910000000,
                            "Q1 2027": 69903000000,
                            "Q3 2025": 22316000000,
                            "Q3 2026": 37936000000,
                            "Q2 2025": 19214000000,
                            "Q2 2026": 31206000000,
                            "Q1 2025": 17279000000,
                            "Q4 2026": 50398000000
                          },
                          "sort_order": 25,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:pretax_income"
                        },
                        "std:income_tax": {
                          "label": "Income Tax Expense",
                          "values": {
                            "Q1 2025": 2398000000,
                            "Q2 2025": 2615000000,
                            "Q3 2025": 3007000000,
                            "Q1 2026": 3135000000,
                            "Q2 2026": 4784000000,
                            "Q3 2026": 6026000000,
                            "Q4 2026": 7438000000,
                            "Q1 2027": 11582000000
                          },
                          "sort_order": 26,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncomeTaxExpenseBenefit": {
                          "label": "Income Tax Expense (Benefit)",
                          "values": {
                            "Q1 2026": 3135000000,
                            "Q1 2027": 11582000000,
                            "Q3 2025": 3007000000,
                            "Q3 2026": 6026000000,
                            "Q2 2025": 2615000000,
                            "Q2 2026": 4784000000,
                            "Q1 2025": 2398000000,
                            "Q4 2026": 7438000000
                          },
                          "sort_order": 27,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:income_tax"
                        },
                        "std:net_income": {
                          "label": "Net Income",
                          "values": {
                            "Q1 2025": 14881000000,
                            "Q2 2025": 16599000000,
                            "Q3 2025": 19309000000,
                            "Q1 2026": 18775000000,
                            "Q2 2026": 26422000000,
                            "Q3 2026": 31910000000,
                            "Q4 2026": 42960000000,
                            "Q1 2027": 58321000000
                          },
                          "sort_order": 28,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:NetIncomeLoss": {
                          "label": "Net Income (Loss) Attributable to Parent",
                          "values": {
                            "Q1 2026": 18775000000,
                            "Q1 2027": 58321000000,
                            "Q3 2025": 19309000000,
                            "Q3 2026": 31910000000,
                            "Q2 2025": 16599000000,
                            "Q2 2026": 26422000000,
                            "Q1 2025": 14881000000,
                            "Q4 2026": 42960000000
                          },
                          "sort_order": 29,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:net_income"
                        },
                        "std:net_margin": {
                          "label": "Net Margin",
                          "values": {
                            "Q1 2025": 0.5713792044232837,
                            "Q2 2025": 0.5525632490013316,
                            "Q3 2025": 0.550396214582977,
                            "Q1 2026": 0.4261041260042667,
                            "Q2 2026": 0.5652611086151937,
                            "Q3 2026": 0.5597656387046978,
                            "Q4 2026": 0.630586991941521,
                            "Q1 2027": 0.7145867793910433
                          },
                          "sort_order": 30,
                          "depth": 1,
                          "is_header": false,
                          "percent": true,
                          "no_scale": true,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:eps_basic": {
                          "label": "EPS, Basic",
                          "values": {
                            "Q1 2025": 0.6,
                            "Q2 2025": 0.68,
                            "Q3 2025": 0.79,
                            "Q1 2026": 0.77,
                            "Q2 2026": 1.08,
                            "Q3 2026": 1.31,
                            "Q4 2026": 1.768819,
                            "Q1 2027": 2.4
                          },
                          "sort_order": 31,
                          "depth": 1,
                          "is_header": false,
                          "no_scale": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:EarningsPerShareBasic": {
                          "label": "Earnings Per Share, Basic",
                          "values": {
                            "Q1 2026": 0.77,
                            "Q1 2027": 2.4,
                            "Q3 2025": 0.79,
                            "Q3 2026": 1.31,
                            "Q2 2025": 0.68,
                            "Q2 2026": 1.08,
                            "Q1 2025": 0.6,
                            "Q4 2026": 1.77
                          },
                          "sort_order": 32,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": true,
                          "parent_key": "std:eps_basic"
                        },
                        "std:eps_diluted": {
                          "label": "EPS, Diluted",
                          "values": {
                            "Q1 2025": 0.6,
                            "Q2 2025": 0.67,
                            "Q3 2025": 0.78,
                            "Q1 2026": 0.76,
                            "Q2 2026": 1.08,
                            "Q3 2026": 1.3,
                            "Q4 2026": 1.757844,
                            "Q1 2027": 2.39
                          },
                          "sort_order": 33,
                          "depth": 1,
                          "is_header": false,
                          "no_scale": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:EarningsPerShareDiluted": {
                          "label": "Earnings Per Share, Diluted",
                          "values": {
                            "Q1 2026": 0.76,
                            "Q1 2027": 2.39,
                            "Q3 2025": 0.78,
                            "Q3 2026": 1.3,
                            "Q2 2025": 0.67,
                            "Q2 2026": 1.08,
                            "Q1 2025": 0.6,
                            "Q4 2026": 1.76
                          },
                          "sort_order": 34,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": true,
                          "parent_key": "std:eps_diluted"
                        },
                        "std:shares_basic": {
                          "label": "Weighted Average Shares, Basic",
                          "values": {
                            "Q1 2025": 24620000000,
                            "Q2 2025": 24578000000,
                            "Q3 2025": 24533000000,
                            "Q1 2026": 24441000000,
                            "Q2 2026": 24366000000,
                            "Q3 2026": 24327000000,
                            "Q1 2027": 24286000000
                          },
                          "sort_order": 35,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:WeightedAverageNumberOfSharesOutstandingBasic": {
                          "label": "Weighted Average Number of Shares Outstanding, Basic",
                          "values": {
                            "Q1 2026": 24441000000,
                            "Q1 2027": 24286000000,
                            "Q3 2025": 24533000000,
                            "Q3 2026": 24327000000,
                            "Q2 2025": 24578000000,
                            "Q2 2026": 24366000000,
                            "Q1 2025": 24620000000
                          },
                          "sort_order": 36,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:shares_basic"
                        },
                        "std:shares_diluted": {
                          "label": "Weighted Average Shares, Diluted",
                          "values": {
                            "Q1 2025": 24890000000,
                            "Q2 2025": 24848000000,
                            "Q3 2025": 24774000000,
                            "Q1 2026": 24611000000,
                            "Q2 2026": 24532000000,
                            "Q3 2026": 24483000000,
                            "Q1 2027": 24391000000
                          },
                          "sort_order": 37,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding": {
                          "label": "Weighted Average Number of Shares Outstanding, Diluted",
                          "values": {
                            "Q1 2026": 24611000000,
                            "Q1 2027": 24391000000,
                            "Q3 2025": 24774000000,
                            "Q3 2026": 24483000000,
                            "Q2 2025": 24848000000,
                            "Q2 2026": 24532000000,
                            "Q1 2025": 24890000000
                          },
                          "sort_order": 38,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:shares_diluted"
                        },
                        "std:dps": {
                          "label": "Dividends Per Share",
                          "values": {
                            "Q1 2025": 0.004,
                            "Q2 2025": 0.01,
                            "Q3 2025": 0.01,
                            "Q1 2026": 0.01,
                            "Q2 2026": 0.01,
                            "Q3 2026": 0.01,
                            "Q1 2027": 0.01
                          },
                          "sort_order": 39,
                          "depth": 1,
                          "is_header": false,
                          "no_scale": true,
                          "computed": false,
                          "default_collapsed": false
                        },
                        "std:h_derived": {
                          "label": "Derived Metrics",
                          "values": {},
                          "sort_order": 40,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:ebitda": {
                          "label": "EBITDA",
                          "values": {
                            "Q1 2025": 17319000000,
                            "Q2 2025": 19075000000,
                            "Q3 2025": 22347000000,
                            "Q1 2026": 22249000000,
                            "Q2 2026": 29109000000,
                            "Q3 2026": 36761000000,
                            "Q4 2026": 45111000000,
                            "Q1 2027": 54533000000
                          },
                          "sort_order": 41,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:effective_tax_rate": {
                          "label": "Effective Tax Rate",
                          "values": {
                            "Q1 2025": 0.1387811794664043,
                            "Q2 2025": 0.1360986780472572,
                            "Q3 2025": 0.13474637031726117,
                            "Q1 2026": 0.1430853491556367,
                            "Q2 2026": 0.1533038518233673,
                            "Q3 2026": 0.1588464782792071,
                            "Q4 2026": 0.1475852216357792,
                            "Q1 2027": 0.16568673733602277
                          },
                          "sort_order": 42,
                          "depth": 1,
                          "is_header": false,
                          "percent": true,
                          "no_scale": true,
                          "computed": true,
                          "default_collapsed": false
                        }
                      }
                    },
                    "balance_sheet": {
                      "data": {
                        "std:h_current_assets": {
                          "label": "Current Assets",
                          "values": {},
                          "sort_order": 0,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:cash": {
                          "label": "Cash & Cash Equivalents",
                          "values": {
                            "Q1 2025": 7587000000,
                            "Q2 2025": 8563000000,
                            "Q3 2025": 9107000000,
                            "Q1 2026": 15234000000,
                            "Q2 2026": 11639000000,
                            "Q3 2026": 11486000000,
                            "Q4 2026": 10605000000,
                            "Q1 2027": 13237000000
                          },
                          "sort_order": 1,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:CashAndCashEquivalentsAtCarryingValue": {
                          "label": "Cash and Cash Equivalent",
                          "values": {
                            "Q1 2027": 13237000000,
                            "Q4 2026": 10605000000,
                            "Q3 2026": 11486000000,
                            "Q2 2026": 11639000000,
                            "Q1 2026": 15234000000,
                            "Q3 2025": 9107000000,
                            "Q2 2025": 8563000000,
                            "Q1 2025": 7587000000
                          },
                          "sort_order": 2,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cash"
                        },
                        "std:sti": {
                          "label": "Short-Term Investments",
                          "values": {
                            "Q1 2025": 23851000000,
                            "Q2 2025": 26237000000,
                            "Q3 2025": 29380000000,
                            "Q1 2026": 38457000000,
                            "Q2 2026": 45152000000,
                            "Q3 2026": 49122000000
                          },
                          "sort_order": 3,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:MarketableSecuritiesCurrent": {
                          "label": "Marketable Securities, Current",
                          "values": {
                            "Q3 2026": 49122000000,
                            "Q2 2026": 45152000000,
                            "Q1 2026": 38457000000,
                            "Q3 2025": 29380000000,
                            "Q2 2025": 26237000000,
                            "Q1 2025": 23851000000
                          },
                          "sort_order": 4,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:sti"
                        },
                        "std:cash_and_sti": {
                          "label": "Total Cash & Short-Term Investments",
                          "values": {
                            "Q1 2025": 31438000000,
                            "Q2 2025": 34800000000,
                            "Q3 2025": 38487000000,
                            "Q1 2026": 53691000000,
                            "Q2 2026": 56791000000,
                            "Q3 2026": 60608000000,
                            "Q4 2026": 10605000000,
                            "Q1 2027": 13237000000
                          },
                          "sort_order": 5,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": false
                        },
                        "std:receivables": {
                          "label": "Accounts Receivable",
                          "values": {
                            "Q1 2025": 12365000000,
                            "Q2 2025": 14132000000,
                            "Q3 2025": 17693000000,
                            "Q1 2026": 22132000000,
                            "Q2 2026": 27808000000,
                            "Q3 2026": 33391000000,
                            "Q4 2026": 38466000000,
                            "Q1 2027": 40710000000
                          },
                          "sort_order": 6,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:AccountsReceivableNetCurrent": {
                          "label": "Accounts Receivable, after Allowance for Credit Loss, Current",
                          "values": {
                            "Q1 2027": 40710000000,
                            "Q4 2026": 38466000000,
                            "Q3 2026": 33391000000,
                            "Q2 2026": 27808000000,
                            "Q1 2026": 22132000000,
                            "Q3 2025": 17693000000,
                            "Q2 2025": 14132000000,
                            "Q1 2025": 12365000000
                          },
                          "sort_order": 7,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:receivables"
                        },
                        "std:inventory": {
                          "label": "Inventories",
                          "values": {
                            "Q1 2025": 5864000000,
                            "Q2 2025": 6675000000,
                            "Q3 2025": 7654000000,
                            "Q1 2026": 11333000000,
                            "Q2 2026": 14962000000,
                            "Q3 2026": 19784000000,
                            "Q4 2026": 21403000000,
                            "Q1 2027": 25797000000
                          },
                          "sort_order": 8,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:InventoryNet": {
                          "label": "Inventory, Net",
                          "values": {
                            "Q1 2027": 25797000000,
                            "Q4 2026": 21403000000,
                            "Q3 2026": 19784000000,
                            "Q2 2026": 14962000000,
                            "Q1 2026": 11333000000,
                            "Q3 2025": 7654000000,
                            "Q2 2025": 6675000000,
                            "Q1 2025": 5864000000
                          },
                          "sort_order": 9,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:inventory"
                        },
                        "std:other_current_assets": {
                          "label": "Other Current Assets",
                          "values": {
                            "Q1 2025": 4062000000,
                            "Q2 2025": 4026000000,
                            "Q3 2025": 3806000000,
                            "Q1 2026": 2779000000,
                            "Q2 2026": 2658000000,
                            "Q3 2026": 2709000000,
                            "Q4 2026": 55131000000,
                            "Q1 2027": 71251000000
                          },
                          "sort_order": 10,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": true
                        },
                        "nvda:MarketableSecuritiesAndEquitySecuritiesFVNI": {
                          "label": "Marketable Securities And Equity Securities FVNI",
                          "values": {
                            "Q3 2026": 49122000000,
                            "Q2 2026": 45152000000,
                            "Q1 2026": 38457000000,
                            "Q4 2026": 51951000000,
                            "Q3 2025": 29380000000,
                            "Q2 2025": 26237000000
                          },
                          "sort_order": 11,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_current_assets"
                        },
                        "us-gaap:DebtSecuritiesCurrent": {
                          "label": "Debt Securities, Current",
                          "values": {
                            "Q1 2027": 37098000000,
                            "Q4 2026": 39065000000
                          },
                          "sort_order": 12,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_current_assets"
                        },
                        "us-gaap:PrepaidExpenseAndOtherAssetsCurrent": {
                          "label": "Prepaid Expense and Other Assets, Current",
                          "values": {
                            "Q1 2027": 3916000000,
                            "Q4 2026": 3180000000,
                            "Q3 2026": 2709000000,
                            "Q2 2026": 2658000000,
                            "Q1 2026": 2779000000,
                            "Q3 2025": 3806000000,
                            "Q2 2025": 4026000000,
                            "Q1 2025": 4062000000
                          },
                          "sort_order": 13,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_current_assets"
                        },
                        "std:total_current_assets": {
                          "label": "Total Current Assets",
                          "values": {
                            "Q1 2025": 53729000000,
                            "Q2 2025": 59633000000,
                            "Q3 2025": 67640000000,
                            "Q1 2026": 89935000000,
                            "Q2 2026": 102219000000,
                            "Q3 2026": 116492000000,
                            "Q4 2026": 125605000000,
                            "Q1 2027": 150995000000
                          },
                          "sort_order": 14,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:AssetsCurrent": {
                          "label": "Assets, Current",
                          "values": {
                            "Q1 2027": 150995000000,
                            "Q4 2026": 125605000000,
                            "Q3 2026": 116492000000,
                            "Q2 2026": 102219000000,
                            "Q1 2026": 89935000000,
                            "Q3 2025": 67640000000,
                            "Q2 2025": 59633000000,
                            "Q1 2025": 53729000000
                          },
                          "sort_order": 15,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_current_assets"
                        },
                        "std:h_noncurrent_assets": {
                          "label": "Non-Current Assets",
                          "values": {},
                          "sort_order": 16,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:ppe": {
                          "label": "Net Property, Plant & Equipment",
                          "values": {
                            "Q1 2025": 4006000000,
                            "Q2 2025": 4885000000,
                            "Q3 2025": 5343000000,
                            "Q1 2026": 7136000000,
                            "Q2 2026": 9141000000,
                            "Q3 2026": 9780000000,
                            "Q4 2026": 10383000000,
                            "Q1 2027": 12403000000
                          },
                          "sort_order": 17,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:PropertyPlantAndEquipmentNet": {
                          "label": "Property, Plant and Equipment, Net",
                          "values": {
                            "Q1 2027": 12403000000,
                            "Q4 2026": 10383000000,
                            "Q3 2026": 9780000000,
                            "Q2 2026": 9141000000,
                            "Q1 2026": 7136000000,
                            "Q3 2025": 5343000000,
                            "Q2 2025": 4885000000,
                            "Q1 2025": 4006000000
                          },
                          "sort_order": 18,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:ppe"
                        },
                        "std:operating_lease_rou": {
                          "label": "Operating Lease Right-of-Use Assets",
                          "values": {
                            "Q1 2025": 1532000000,
                            "Q2 2025": 1556000000,
                            "Q3 2025": 1755000000,
                            "Q1 2026": 1810000000,
                            "Q2 2026": 2084000000,
                            "Q3 2026": 2281000000,
                            "Q4 2026": 2867000000,
                            "Q1 2027": 4258000000
                          },
                          "sort_order": 19,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:OperatingLeaseRightOfUseAsset": {
                          "label": "Operating Lease, Right-of-Use Asset",
                          "values": {
                            "Q1 2027": 4258000000,
                            "Q4 2026": 2867000000,
                            "Q3 2026": 2281000000,
                            "Q2 2026": 2084000000,
                            "Q1 2026": 1810000000,
                            "Q3 2025": 1755000000,
                            "Q2 2025": 1556000000,
                            "Q1 2025": 1532000000
                          },
                          "sort_order": 20,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:operating_lease_rou"
                        },
                        "std:deferred_tax_assets": {
                          "label": "Deferred Tax Assets",
                          "values": {
                            "Q1 2025": 7798000000,
                            "Q2 2025": 9578000000,
                            "Q3 2025": 10276000000,
                            "Q1 2026": 13318000000,
                            "Q2 2026": 13570000000,
                            "Q3 2026": 13674000000,
                            "Q4 2026": 13258000000,
                            "Q1 2027": 11707000000
                          },
                          "sort_order": 21,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:DeferredIncomeTaxAssetsNet": {
                          "label": "Deferred Income Tax Assets, Net",
                          "values": {
                            "Q1 2027": 11707000000,
                            "Q4 2026": 13258000000,
                            "Q3 2026": 13674000000,
                            "Q2 2026": 13570000000,
                            "Q1 2026": 13318000000,
                            "Q3 2025": 10276000000,
                            "Q2 2025": 9578000000,
                            "Q1 2025": 7798000000
                          },
                          "sort_order": 22,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:deferred_tax_assets"
                        },
                        "std:goodwill": {
                          "label": "Goodwill",
                          "values": {
                            "Q1 2025": 4453000000,
                            "Q2 2025": 4622000000,
                            "Q3 2025": 4724000000,
                            "Q1 2026": 5498000000,
                            "Q2 2026": 5755000000,
                            "Q3 2026": 6261000000,
                            "Q4 2026": 20832000000,
                            "Q1 2027": 20894000000
                          },
                          "sort_order": 23,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:Goodwill": {
                          "label": "Goodwill",
                          "values": {
                            "Q1 2027": 20894000000,
                            "Q4 2026": 20832000000,
                            "Q3 2026": 6261000000,
                            "Q2 2026": 5755000000,
                            "Q1 2026": 5498000000,
                            "Q3 2025": 4724000000,
                            "Q2 2025": 4622000000,
                            "Q1 2025": 4453000000
                          },
                          "sort_order": 24,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:goodwill"
                        },
                        "std:intangibles": {
                          "label": "Net Intangible Assets",
                          "values": {
                            "Q1 2025": 986000000,
                            "Q2 2025": 952000000,
                            "Q3 2025": 838000000,
                            "Q1 2026": 769000000,
                            "Q2 2026": 755000000,
                            "Q3 2026": 936000000,
                            "Q4 2026": 3306000000,
                            "Q1 2027": 3120000000
                          },
                          "sort_order": 25,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IntangibleAssetsNetExcludingGoodwill": {
                          "label": "Intangible Assets, Net (Excluding Goodwill)",
                          "values": {
                            "Q1 2027": 3120000000,
                            "Q4 2026": 3306000000,
                            "Q3 2026": 936000000,
                            "Q2 2026": 755000000,
                            "Q1 2026": 769000000,
                            "Q3 2025": 838000000,
                            "Q2 2025": 952000000,
                            "Q1 2025": 986000000
                          },
                          "sort_order": 26,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:intangibles"
                        },
                        "std:lt_investments": {
                          "label": "Long-Term Investments",
                          "values": {
                            "Q4 2026": 22251000000,
                            "Q1 2027": 30237000000
                          },
                          "sort_order": 27,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:EquitySecuritiesFvNi": {
                          "label": "Equity Securities, FV-NI, Current",
                          "values": {
                            "Q1 2027": 30237000000,
                            "Q4 2026": 12886000000
                          },
                          "sort_order": 28,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:lt_investments"
                        },
                        "us-gaap:EquitySecuritiesFVNINoncurrent": {
                          "label": "Equity Securities, FV-NI, Noncurrent",
                          "values": {
                            "Q3 2026": 8187000000,
                            "Q2 2026": 3799000000,
                            "Q1 2026": 3240000000,
                            "Q4 2026": 22251000000,
                            "Q3 2025": 2237000000,
                            "Q2 2025": 1819000000
                          },
                          "sort_order": 29,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:lt_investments"
                        },
                        "std:other_noncurrent_assets": {
                          "label": "Other Non-Current Assets",
                          "values": {
                            "Q1 2025": 4568000000,
                            "Q2 2025": 4001000000,
                            "Q3 2025": 5437000000,
                            "Q1 2026": 6788000000,
                            "Q2 2026": 7216000000,
                            "Q3 2026": 11724000000,
                            "Q4 2026": 8301000000,
                            "Q1 2027": 25860000000
                          },
                          "sort_order": 30,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "nvda:NonMarketableSecurities": {
                          "label": "Non Marketable Securities",
                          "values": {
                            "Q1 2027": 43364000000,
                            "Q4 2026": 22251000000
                          },
                          "sort_order": 31,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_noncurrent_assets"
                        },
                        "us-gaap:OtherAssetsNoncurrent": {
                          "label": "Other Assets, Noncurrent",
                          "values": {
                            "Q1 2027": 12733000000,
                            "Q4 2026": 8301000000,
                            "Q3 2026": 11724000000,
                            "Q2 2026": 7216000000,
                            "Q1 2026": 6788000000,
                            "Q3 2025": 5437000000,
                            "Q2 2025": 4001000000,
                            "Q1 2025": 4568000000
                          },
                          "sort_order": 32,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_noncurrent_assets"
                        },
                        "std:total_assets": {
                          "label": "Total Assets",
                          "values": {
                            "Q1 2025": 77072000000,
                            "Q2 2025": 85227000000,
                            "Q3 2025": 96013000000,
                            "Q1 2026": 125254000000,
                            "Q2 2026": 140740000000,
                            "Q3 2026": 161148000000,
                            "Q4 2026": 206803000000,
                            "Q1 2027": 259474000000
                          },
                          "sort_order": 33,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:Assets": {
                          "label": "Assets",
                          "values": {
                            "Q1 2027": 259474000000,
                            "Q4 2026": 206803000000,
                            "Q3 2026": 161148000000,
                            "Q2 2026": 140740000000,
                            "Q1 2026": 125254000000,
                            "Q3 2025": 96013000000,
                            "Q2 2025": 85227000000,
                            "Q1 2025": 77072000000
                          },
                          "sort_order": 34,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_assets"
                        },
                        "std:h_current_liabilities": {
                          "label": "Current Liabilities",
                          "values": {},
                          "sort_order": 35,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:accounts_payable": {
                          "label": "Accounts Payable",
                          "values": {
                            "Q1 2025": 2715000000,
                            "Q2 2025": 3680000000,
                            "Q3 2025": 5353000000,
                            "Q1 2026": 7331000000,
                            "Q2 2026": 9064000000,
                            "Q3 2026": 8624000000,
                            "Q4 2026": 9812000000,
                            "Q1 2027": 13097000000
                          },
                          "sort_order": 36,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:AccountsPayableCurrent": {
                          "label": "Accounts Payable, Current",
                          "values": {
                            "Q1 2027": 13097000000,
                            "Q4 2026": 9812000000,
                            "Q3 2026": 8624000000,
                            "Q2 2026": 9064000000,
                            "Q1 2026": 7331000000,
                            "Q3 2025": 5353000000,
                            "Q2 2025": 3680000000,
                            "Q1 2025": 2715000000
                          },
                          "sort_order": 37,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:accounts_payable"
                        },
                        "std:accrued": {
                          "label": "Accrued Expenses",
                          "values": {
                            "Q1 2025": 11258000000,
                            "Q2 2025": 10289000000,
                            "Q3 2025": 11126000000,
                            "Q1 2026": 19211000000,
                            "Q2 2026": 15193000000,
                            "Q3 2026": 16452000000,
                            "Q4 2026": 21352000000,
                            "Q1 2027": 29787000000
                          },
                          "sort_order": 38,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:AccruedLiabilitiesCurrent": {
                          "label": "Accrued Liabilities, Current",
                          "values": {
                            "Q1 2027": 29787000000,
                            "Q4 2026": 21352000000,
                            "Q3 2026": 16452000000,
                            "Q2 2026": 15193000000,
                            "Q1 2026": 19211000000,
                            "Q3 2025": 11126000000,
                            "Q2 2025": 10289000000,
                            "Q1 2025": 11258000000
                          },
                          "sort_order": 39,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:accrued"
                        },
                        "std:short_term_debt": {
                          "label": "Short-Term Debt",
                          "values": {
                            "Q1 2025": 1250000000,
                            "Q2 2025": 0,
                            "Q3 2025": 0,
                            "Q3 2026": 999000000,
                            "Q4 2026": 999000000,
                            "Q1 2027": 1000000000
                          },
                          "sort_order": 40,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:DebtCurrent": {
                          "label": "Debt, Current",
                          "values": {
                            "Q1 2027": 1000000000,
                            "Q4 2026": 999000000,
                            "Q3 2026": 999000000,
                            "Q3 2025": 0,
                            "Q2 2025": 0,
                            "Q1 2025": 1250000000
                          },
                          "sort_order": 41,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:short_term_debt"
                        },
                        "std:deferred_revenue_current": {
                          "label": "Deferred Revenue",
                          "values": {},
                          "sort_order": 42,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": false
                        },
                        "std:other_current_liabilities": {
                          "label": "Other Current Liabilities",
                          "values": {},
                          "sort_order": 43,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:total_current_liabilities": {
                          "label": "Total Current Liabilities",
                          "values": {
                            "Q1 2025": 15223000000,
                            "Q2 2025": 13969000000,
                            "Q3 2025": 16479000000,
                            "Q1 2026": 26542000000,
                            "Q2 2026": 24257000000,
                            "Q3 2026": 26075000000,
                            "Q4 2026": 32163000000,
                            "Q1 2027": 43884000000
                          },
                          "sort_order": 44,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:LiabilitiesCurrent": {
                          "label": "Liabilities, Current",
                          "values": {
                            "Q1 2027": 43884000000,
                            "Q4 2026": 32163000000,
                            "Q3 2026": 26075000000,
                            "Q2 2026": 24257000000,
                            "Q1 2026": 26542000000,
                            "Q3 2025": 16479000000,
                            "Q2 2025": 13969000000,
                            "Q1 2025": 15223000000
                          },
                          "sort_order": 45,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_current_liabilities"
                        },
                        "std:h_noncurrent_liabilities": {
                          "label": "Non-Current Liabilities",
                          "values": {},
                          "sort_order": 46,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:long_term_debt": {
                          "label": "Long-Term Debt",
                          "values": {
                            "Q1 2025": 8460000000,
                            "Q2 2025": 8461000000,
                            "Q3 2025": 8462000000,
                            "Q1 2026": 8464000000,
                            "Q2 2026": 8466000000,
                            "Q3 2026": 7468000000,
                            "Q4 2026": 7469000000,
                            "Q1 2027": 7470000000
                          },
                          "sort_order": 47,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:LongTermDebtNoncurrent": {
                          "label": "Long-Term Debt, Excluding Current Maturities",
                          "values": {
                            "Q1 2027": 7470000000,
                            "Q4 2026": 7469000000,
                            "Q3 2026": 7468000000,
                            "Q2 2026": 8466000000,
                            "Q1 2026": 8464000000,
                            "Q3 2025": 8462000000,
                            "Q2 2025": 8461000000,
                            "Q1 2025": 8460000000
                          },
                          "sort_order": 48,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:long_term_debt"
                        },
                        "std:leases_noncurrent": {
                          "label": "Lease Obligations",
                          "values": {
                            "Q1 2025": 1281000000,
                            "Q2 2025": 1304000000,
                            "Q3 2025": 1490000000,
                            "Q1 2026": 1521000000,
                            "Q2 2026": 1831000000,
                            "Q3 2026": 2014000000,
                            "Q4 2026": 2572000000,
                            "Q1 2027": 3878000000
                          },
                          "sort_order": 49,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:OperatingLeaseLiabilityNoncurrent": {
                          "label": "Operating Lease, Liability, Noncurrent",
                          "values": {
                            "Q1 2027": 3878000000,
                            "Q4 2026": 2572000000,
                            "Q3 2026": 2014000000,
                            "Q2 2026": 1831000000,
                            "Q1 2026": 1521000000,
                            "Q3 2025": 1490000000,
                            "Q2 2025": 1304000000,
                            "Q1 2025": 1281000000
                          },
                          "sort_order": 50,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:leases_noncurrent"
                        },
                        "std:other_noncurrent_liabilities": {
                          "label": "Other Liabilities",
                          "values": {
                            "Q1 2025": 2966000000,
                            "Q2 2025": 3336000000,
                            "Q3 2025": 3683000000,
                            "Q1 2026": 4884000000,
                            "Q2 2026": 6055000000,
                            "Q3 2026": 6694000000,
                            "Q4 2026": 7306000000,
                            "Q1 2027": 8768000000
                          },
                          "sort_order": 51,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:OtherLiabilitiesNoncurrent": {
                          "label": "Other Liabilities, Noncurrent",
                          "values": {
                            "Q1 2027": 8768000000,
                            "Q4 2026": 7306000000,
                            "Q3 2026": 6694000000,
                            "Q2 2026": 6055000000,
                            "Q1 2026": 4884000000,
                            "Q3 2025": 3683000000,
                            "Q2 2025": 3336000000,
                            "Q1 2025": 2966000000
                          },
                          "sort_order": 52,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_noncurrent_liabilities"
                        },
                        "std:total_liabilities": {
                          "label": "Total Liabilities",
                          "values": {
                            "Q1 2025": 27930000000,
                            "Q2 2025": 27070000000,
                            "Q3 2025": 30114000000,
                            "Q1 2026": 41411000000,
                            "Q2 2026": 40609000000,
                            "Q3 2026": 42251000000,
                            "Q4 2026": 49510000000,
                            "Q1 2027": 64000000000
                          },
                          "sort_order": 53,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:Liabilities": {
                          "label": "Liabilities",
                          "values": {
                            "Q1 2027": 64000000000,
                            "Q4 2026": 49510000000,
                            "Q3 2026": 42251000000,
                            "Q2 2026": 40609000000,
                            "Q1 2026": 41411000000,
                            "Q3 2025": 30114000000,
                            "Q2 2025": 27070000000,
                            "Q1 2025": 27930000000
                          },
                          "sort_order": 54,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_liabilities"
                        },
                        "std:h_equity": {
                          "label": "Shareholders' Equity",
                          "values": {},
                          "sort_order": 55,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:preferred_stock": {
                          "label": "Preferred Stock",
                          "values": {},
                          "sort_order": 56,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:PreferredStockValueOutstanding": {
                          "label": "Preferred Stock, Value, Outstanding",
                          "values": {
                            "Q1 2027": 0,
                            "Q4 2026": 0,
                            "Q3 2026": 0,
                            "Q2 2026": 0,
                            "Q1 2026": 0,
                            "Q3 2025": 0,
                            "Q2 2025": 0,
                            "Q1 2025": 0
                          },
                          "sort_order": 57,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:preferred_stock"
                        },
                        "std:common_stock_apic": {
                          "label": "Common Stock & Paid-in Capital",
                          "values": {
                            "Q1 2025": 12653000000,
                            "Q2 2025": 12140000000,
                            "Q3 2025": 11846000000,
                            "Q1 2026": 11499000000,
                            "Q2 2026": 11224000000,
                            "Q3 2026": 10650000000,
                            "Q4 2026": 10142000000,
                            "Q1 2027": 10299000000
                          },
                          "sort_order": 58,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:CommonStockValue": {
                          "label": "Common Stock, Value, Issued",
                          "values": {
                            "Q1 2027": 24000000,
                            "Q4 2026": 24000000,
                            "Q3 2026": 24000000,
                            "Q2 2026": 24000000,
                            "Q1 2026": 24000000,
                            "Q3 2025": 25000000,
                            "Q2 2025": 25000000,
                            "Q1 2025": 2000000
                          },
                          "sort_order": 59,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:common_stock_apic"
                        },
                        "us-gaap:AdditionalPaidInCapital": {
                          "label": "Additional Paid in Capital",
                          "values": {
                            "Q1 2027": 10275000000,
                            "Q4 2026": 10118000000,
                            "Q3 2026": 10626000000,
                            "Q2 2026": 11200000000,
                            "Q1 2026": 11475000000,
                            "Q3 2025": 11821000000,
                            "Q2 2025": 12115000000,
                            "Q1 2025": 12651000000
                          },
                          "sort_order": 60,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:common_stock_apic"
                        },
                        "std:aoci": {
                          "label": "Accumulated Other Comprehensive Income (Loss)",
                          "values": {
                            "Q1 2025": -109000000,
                            "Q2 2025": 56000000,
                            "Q3 2025": 103000000,
                            "Q1 2026": 186000000,
                            "Q2 2026": 170000000,
                            "Q3 2026": 339000000,
                            "Q4 2026": 178000000,
                            "Q1 2027": 137000000
                          },
                          "sort_order": 61,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:AccumulatedOtherComprehensiveIncomeLossNetOfTax": {
                          "label": "Accumulated Other Comprehensive Income (Loss), Net of Tax",
                          "values": {
                            "Q1 2027": 137000000,
                            "Q4 2026": 178000000,
                            "Q3 2026": 339000000,
                            "Q2 2026": 170000000,
                            "Q1 2026": 186000000,
                            "Q3 2025": 103000000,
                            "Q2 2025": 56000000,
                            "Q1 2025": -109000000
                          },
                          "sort_order": 62,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:aoci"
                        },
                        "std:retained_earnings": {
                          "label": "Retained Earnings",
                          "values": {
                            "Q1 2025": 36598000000,
                            "Q2 2025": 45961000000,
                            "Q3 2025": 53950000000,
                            "Q1 2026": 72158000000,
                            "Q2 2026": 88737000000,
                            "Q3 2026": 107908000000,
                            "Q4 2026": 146973000000,
                            "Q1 2027": 185038000000
                          },
                          "sort_order": 63,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:RetainedEarningsAccumulatedDeficit": {
                          "label": "Retained Earnings (Accumulated Deficit)",
                          "values": {
                            "Q1 2027": 185038000000,
                            "Q4 2026": 146973000000,
                            "Q3 2026": 107908000000,
                            "Q2 2026": 88737000000,
                            "Q1 2026": 72158000000,
                            "Q3 2025": 53950000000,
                            "Q2 2025": 45961000000,
                            "Q1 2025": 36598000000
                          },
                          "sort_order": 64,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:retained_earnings"
                        },
                        "std:other_equity": {
                          "label": "Other Equity",
                          "values": {},
                          "sort_order": 65,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:total_common_equity": {
                          "label": "Total Common Shareholders' Equity",
                          "values": {
                            "Q1 2025": 49142000000,
                            "Q2 2025": 58157000000,
                            "Q3 2025": 65899000000,
                            "Q1 2026": 83843000000,
                            "Q2 2026": 100131000000,
                            "Q3 2026": 118897000000,
                            "Q4 2026": 157293000000,
                            "Q1 2027": 195474000000
                          },
                          "sort_order": 66,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:StockholdersEquity": {
                          "label": "Equity, Attributable to Parent",
                          "values": {
                            "Q1 2026": 83843000000,
                            "Q1 2027": 195474000000,
                            "Q4 2026": 157293000000,
                            "Q2 2025": 58157000000,
                            "Q3 2025": 65899000000,
                            "Q3 2026": 118897000000,
                            "Q2 2026": 100131000000,
                            "Q1 2025": 49142000000
                          },
                          "sort_order": 67,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_common_equity"
                        },
                        "std:total_equity": {
                          "label": "Total Shareholders' Equity",
                          "values": {
                            "Q1 2025": 49142000000,
                            "Q2 2025": 58157000000,
                            "Q3 2025": 65899000000,
                            "Q1 2026": 83843000000,
                            "Q2 2026": 100131000000,
                            "Q3 2026": 118897000000,
                            "Q4 2026": 157293000000,
                            "Q1 2027": 195474000000
                          },
                          "sort_order": 68,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": false
                        },
                        "std:total_liabilities_equity": {
                          "label": "Total Liabilities & Equity",
                          "values": {
                            "Q1 2025": 77072000000,
                            "Q2 2025": 85227000000,
                            "Q3 2025": 96013000000,
                            "Q1 2026": 125254000000,
                            "Q2 2026": 140740000000,
                            "Q3 2026": 161148000000,
                            "Q4 2026": 206803000000,
                            "Q1 2027": 259474000000
                          },
                          "sort_order": 69,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:CommitmentsAndContingencies": {
                          "label": "Commitments and Contingencies",
                          "values": {
                            "Q4 2026": 0
                          },
                          "sort_order": 70,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_liabilities_equity"
                        },
                        "us-gaap:LiabilitiesAndStockholdersEquity": {
                          "label": "Liabilities and Equity",
                          "values": {
                            "Q1 2027": 259474000000,
                            "Q4 2026": 206803000000,
                            "Q3 2026": 161148000000,
                            "Q2 2026": 140740000000,
                            "Q1 2026": 125254000000,
                            "Q3 2025": 96013000000,
                            "Q2 2025": 85227000000,
                            "Q1 2025": 77072000000
                          },
                          "sort_order": 71,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:total_liabilities_equity"
                        }
                      }
                    },
                    "cash_flow_statement": {
                      "data": {
                        "std:h_operating": {
                          "label": "Operating Activities",
                          "values": {},
                          "sort_order": 0,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:cfs_net_income": {
                          "label": "Net Income",
                          "values": {
                            "Q1 2025": 14881000000,
                            "Q2 2025": 16599000000,
                            "Q3 2025": 19309000000,
                            "Q1 2026": 18775000000,
                            "Q2 2026": 26422000000,
                            "Q3 2026": 31910000000,
                            "Q4 2026": 42960000000,
                            "Q1 2027": 58321000000
                          },
                          "sort_order": 1,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:NetIncomeLoss": {
                          "label": "Net Income (Loss) Attributable to Parent",
                          "values": {
                            "Q1 2026": 18775000000,
                            "Q1 2027": 58321000000,
                            "Q3 2025": 19309000000,
                            "Q3 2026": 31910000000,
                            "Q2 2025": 16599000000,
                            "Q2 2026": 26422000000,
                            "Q1 2025": 14881000000,
                            "Q4 2026": 42960000000
                          },
                          "sort_order": 2,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cfs_net_income"
                        },
                        "std:dna": {
                          "label": "Depreciation & Amortization",
                          "values": {
                            "Q1 2025": 410000000,
                            "Q2 2025": 433000000,
                            "Q3 2025": 478000000,
                            "Q1 2026": 611000000,
                            "Q2 2026": 669000000,
                            "Q3 2026": 751000000,
                            "Q4 2026": 812000000,
                            "Q1 2027": 997000000
                          },
                          "sort_order": 3,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:DepreciationDepletionAndAmortization": {
                          "label": "Depreciation, Depletion and Amortization",
                          "values": {
                            "Q1 2026": 611000000,
                            "Q1 2027": 997000000,
                            "Q3 2026": 751000000,
                            "Q2 2026": 669000000,
                            "Q1 2025": 410000000,
                            "Q4 2026": 812000000,
                            "Q3 2025": 478000000,
                            "Q2 2025": 433000000
                          },
                          "sort_order": 4,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:dna"
                        },
                        "std:sbc": {
                          "label": "Share-Based Compensation",
                          "values": {
                            "Q1 2025": 1011000000,
                            "Q2 2025": 1153000000,
                            "Q3 2025": 1252000000,
                            "Q1 2026": 1474000000,
                            "Q2 2026": 1625000000,
                            "Q3 2026": 1654000000,
                            "Q4 2026": 1633000000,
                            "Q1 2027": 1928000000
                          },
                          "sort_order": 5,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:ShareBasedCompensation": {
                          "label": "Share-Based Payment Arrangement, Noncash Expense",
                          "values": {
                            "Q1 2026": 1474000000,
                            "Q1 2027": 1928000000,
                            "Q3 2026": 1654000000,
                            "Q2 2026": 1625000000,
                            "Q1 2025": 1011000000,
                            "Q4 2026": 1633000000,
                            "Q3 2025": 1252000000,
                            "Q2 2025": 1153000000
                          },
                          "sort_order": 6,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:sbc"
                        },
                        "std:deferred_taxes": {
                          "label": "Deferred Income Taxes",
                          "values": {
                            "Q1 2025": -1577000000,
                            "Q2 2025": -1699000000,
                            "Q3 2025": -603000000,
                            "Q1 2026": -2177000000,
                            "Q2 2026": 17000000,
                            "Q3 2026": 125000000,
                            "Q4 2026": 611000000,
                            "Q1 2027": 1584000000
                          },
                          "sort_order": 7,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:DeferredIncomeTaxExpenseBenefit": {
                          "label": "Deferred Income Tax Expense (Benefit)",
                          "values": {
                            "Q1 2026": -2177000000,
                            "Q1 2027": 1584000000,
                            "Q3 2026": 125000000,
                            "Q2 2026": 17000000,
                            "Q1 2025": -1577000000,
                            "Q4 2026": 611000000,
                            "Q3 2025": -603000000,
                            "Q2 2025": -1699000000
                          },
                          "sort_order": 8,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:deferred_taxes"
                        },
                        "std:noncash_adjustments": {
                          "label": "Other Non-Cash Adjustments",
                          "values": {
                            "Q1 2025": -145000000,
                            "Q2 2025": -143000000,
                            "Q3 2025": -77000000,
                            "Q1 2026": -98000000,
                            "Q2 2026": -98000000,
                            "Q3 2026": -80000000,
                            "Q4 2026": -11000000,
                            "Q1 2027": -94000000
                          },
                          "sort_order": 9,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:OtherNoncashIncomeExpense": {
                          "label": "Other Noncash Income (Expense)",
                          "values": {
                            "Q1 2026": -98000000,
                            "Q1 2027": -94000000,
                            "Q3 2026": -80000000,
                            "Q2 2026": -98000000,
                            "Q1 2025": -145000000,
                            "Q4 2026": -11000000,
                            "Q3 2025": -77000000,
                            "Q2 2025": -143000000
                          },
                          "sort_order": 10,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:noncash_adjustments"
                        },
                        "std:investment_gains_reversal": {
                          "label": "Investment (Gains) Losses Reversal",
                          "values": {
                            "Q1 2025": -69000000,
                            "Q2 2025": -195000000,
                            "Q3 2025": -38000000,
                            "Q1 2026": 175000000,
                            "Q2 2026": -2248000000,
                            "Q3 2026": -1353000000,
                            "Q4 2026": -5492000000,
                            "Q1 2027": -15936000000
                          },
                          "sort_order": 11,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:GainLossOnInvestments": {
                          "label": "Gain (Loss) on Investments",
                          "values": {
                            "Q1 2026": 175000000,
                            "Q1 2027": -15936000000,
                            "Q3 2026": -1353000000,
                            "Q2 2026": -2248000000,
                            "Q1 2025": -69000000,
                            "Q4 2026": -5492000000,
                            "Q3 2025": -38000000,
                            "Q2 2025": -195000000
                          },
                          "sort_order": 12,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:investment_gains_reversal"
                        },
                        "std:chg_receivables": {
                          "label": "Changes in Receivables",
                          "values": {
                            "Q1 2025": -2366000000,
                            "Q2 2025": -1767000000,
                            "Q3 2025": -3561000000,
                            "Q1 2026": 933000000,
                            "Q2 2026": -5676000000,
                            "Q3 2026": -5582000000,
                            "Q4 2026": -5074000000,
                            "Q1 2027": -2243000000
                          },
                          "sort_order": 13,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncreaseDecreaseInAccountsReceivable": {
                          "label": "Increase (Decrease) in Accounts Receivable",
                          "values": {
                            "Q1 2026": 933000000,
                            "Q1 2027": -2243000000,
                            "Q3 2026": -5582000000,
                            "Q2 2026": -5676000000,
                            "Q1 2025": -2366000000,
                            "Q4 2026": -5074000000,
                            "Q3 2025": -3561000000,
                            "Q2 2025": -1767000000
                          },
                          "sort_order": 14,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:chg_receivables"
                        },
                        "std:chg_inventory": {
                          "label": "Changes in Inventories",
                          "values": {
                            "Q1 2025": -577000000,
                            "Q2 2025": -803000000,
                            "Q3 2025": -977000000,
                            "Q1 2026": -1258000000,
                            "Q2 2026": -3622000000,
                            "Q3 2026": -4823000000,
                            "Q4 2026": -1621000000,
                            "Q1 2027": -4420000000
                          },
                          "sort_order": 15,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncreaseDecreaseInInventories": {
                          "label": "Increase (Decrease) in Inventories",
                          "values": {
                            "Q1 2026": -1258000000,
                            "Q1 2027": -4420000000,
                            "Q3 2026": -4823000000,
                            "Q2 2026": -3622000000,
                            "Q1 2025": -577000000,
                            "Q4 2026": -1621000000,
                            "Q3 2025": -977000000,
                            "Q2 2025": -803000000
                          },
                          "sort_order": 16,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:chg_inventory"
                        },
                        "std:chg_ap": {
                          "label": "Changes in Accounts Payable",
                          "values": {
                            "Q1 2025": -22000000,
                            "Q2 2025": 823000000,
                            "Q3 2025": 1689000000,
                            "Q1 2026": 941000000,
                            "Q2 2026": 1314000000,
                            "Q3 2026": -223000000,
                            "Q4 2026": 1064000000,
                            "Q1 2027": 2210000000
                          },
                          "sort_order": 17,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncreaseDecreaseInAccountsPayable": {
                          "label": "Increase (Decrease) in Accounts Payable",
                          "values": {
                            "Q1 2026": 941000000,
                            "Q1 2027": 2210000000,
                            "Q3 2026": -223000000,
                            "Q2 2026": 1314000000,
                            "Q1 2025": -22000000,
                            "Q4 2026": 1064000000,
                            "Q3 2025": 1689000000,
                            "Q2 2025": 823000000
                          },
                          "sort_order": 18,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:chg_ap"
                        },
                        "std:chg_accrued": {
                          "label": "Changes in Accrued Liabilities",
                          "values": {
                            "Q1 2025": 4202000000,
                            "Q2 2025": -888000000,
                            "Q3 2025": 604000000,
                            "Q1 2026": 7128000000,
                            "Q2 2026": -4053000000,
                            "Q3 2026": 1129000000,
                            "Q4 2026": 1053000000,
                            "Q1 2027": 7763000000
                          },
                          "sort_order": 19,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncreaseDecreaseInAccruedLiabilitiesAndOtherOperatingLiabilities": {
                          "label": "Increase (Decrease) in Accrued Liabilities and Other Operating Liabilities",
                          "values": {
                            "Q1 2026": 7128000000,
                            "Q1 2027": 7763000000,
                            "Q3 2026": 1129000000,
                            "Q2 2026": -4053000000,
                            "Q1 2025": 4202000000,
                            "Q4 2026": 1053000000,
                            "Q3 2025": 604000000,
                            "Q2 2025": -888000000
                          },
                          "sort_order": 20,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:chg_accrued"
                        },
                        "std:chg_deferred_revenue": {
                          "label": "Changes in Deferred Revenue",
                          "values": {},
                          "sort_order": 21,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": false
                        },
                        "std:chg_other_wc": {
                          "label": "Changes in Other Working Capital",
                          "values": {
                            "Q1 2025": -403000000,
                            "Q2 2025": 975000000,
                            "Q3 2025": -449000000,
                            "Q1 2026": 910000000,
                            "Q2 2026": 1015000000,
                            "Q3 2026": 243000000,
                            "Q4 2026": 253000000,
                            "Q1 2027": 234000000
                          },
                          "sort_order": 22,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncreaseDecreaseInPrepaidDeferredExpenseAndOtherAssets": {
                          "label": "Increase (Decrease) in Prepaid Expense and Other Assets",
                          "values": {
                            "Q1 2026": 560000000,
                            "Q1 2027": -983000000,
                            "Q3 2026": -89000000,
                            "Q2 2026": 386000000,
                            "Q1 2025": -726000000,
                            "Q4 2026": -280000000,
                            "Q3 2025": -714000000,
                            "Q2 2025": 714000000
                          },
                          "sort_order": 23,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:chg_other_wc"
                        },
                        "us-gaap:IncreaseDecreaseInOtherNoncurrentLiabilities": {
                          "label": "Increase (Decrease) in Other Noncurrent Liabilities",
                          "values": {
                            "Q1 2026": 350000000,
                            "Q1 2027": 1217000000,
                            "Q3 2026": 332000000,
                            "Q2 2026": 629000000,
                            "Q1 2025": 323000000,
                            "Q4 2026": 533000000,
                            "Q3 2025": 265000000,
                            "Q2 2025": 261000000
                          },
                          "sort_order": 24,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:chg_other_wc"
                        },
                        "std:other_operating": {
                          "label": "Other Operating Adjustments",
                          "values": {},
                          "sort_order": 25,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:cfo": {
                          "label": "Cash from Operating Activities",
                          "values": {
                            "Q1 2025": 15345000000,
                            "Q2 2025": 14488000000,
                            "Q3 2025": 17627000000,
                            "Q1 2026": 27414000000,
                            "Q2 2026": 15365000000,
                            "Q3 2026": 23751000000,
                            "Q4 2026": 36188000000,
                            "Q1 2027": 50344000000
                          },
                          "sort_order": 26,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:NetCashProvidedByUsedInOperatingActivities": {
                          "label": "Cash Provided by (Used in) Operating Activity, Including Discontinued Operation",
                          "values": {
                            "Q1 2026": 27414000000,
                            "Q1 2027": 50344000000,
                            "Q3 2026": 23751000000,
                            "Q2 2026": 15365000000,
                            "Q1 2025": 15345000000,
                            "Q4 2026": 36188000000,
                            "Q3 2025": 17627000000,
                            "Q2 2025": 14488000000
                          },
                          "sort_order": 27,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cfo"
                        },
                        "std:h_investing": {
                          "label": "Investing Activities",
                          "values": {},
                          "sort_order": 28,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:capex": {
                          "label": "Capital Expenditure",
                          "values": {
                            "Q1 2025": -369000000,
                            "Q2 2025": -977000000,
                            "Q3 2025": -813000000,
                            "Q1 2026": -1227000000,
                            "Q2 2026": -1895000000,
                            "Q3 2026": -1636000000,
                            "Q4 2026": -1284000000,
                            "Q1 2027": -1757000000
                          },
                          "sort_order": 29,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:PaymentsToAcquireProductiveAssets": {
                          "label": "Payments to Acquire Productive Assets",
                          "values": {
                            "Q1 2026": -1227000000,
                            "Q1 2027": -1757000000,
                            "Q3 2026": -1636000000,
                            "Q2 2026": -1895000000,
                            "Q1 2025": -369000000,
                            "Q4 2026": -1284000000,
                            "Q3 2025": -813000000,
                            "Q2 2025": -977000000
                          },
                          "sort_order": 30,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:capex"
                        },
                        "std:purchases_investments": {
                          "label": "Purchases of Investments",
                          "values": {
                            "Q1 2025": -9493000000,
                            "Q2 2025": -5744000000,
                            "Q3 2025": -4992000000,
                            "Q1 2026": -7195000000,
                            "Q2 2026": -8158000000,
                            "Q3 2026": -9425000000,
                            "Q4 2026": -33340000000
                          },
                          "sort_order": 31,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:PaymentsToAcquireAvailableForSaleSecuritiesDebt": {
                          "label": "Payments to Acquire Debt Securities, Available-for-Sale",
                          "values": {
                            "Q3 2026": -5718000000,
                            "Q2 2026": -7812000000,
                            "Q1 2025": -9303000000,
                            "Q1 2026": -6546000000,
                            "Q4 2026": -20540000000,
                            "Q3 2025": -4518000000,
                            "Q2 2025": -5744000000
                          },
                          "sort_order": 32,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:purchases_investments"
                        },
                        "us-gaap:PaymentsToAcquireEquitySecuritiesFvNi": {
                          "label": "Payments to Acquire Equity Securities, FV-NI",
                          "values": {
                            "Q3 2026": -3707000000,
                            "Q2 2026": -346000000,
                            "Q1 2025": -190000000,
                            "Q1 2026": -649000000,
                            "Q4 2026": -12800000000,
                            "Q3 2025": -474000000
                          },
                          "sort_order": 33,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:purchases_investments"
                        },
                        "std:proceeds_investments": {
                          "label": "Proceeds from Sale & Maturity of Investments",
                          "values": {
                            "Q1 2025": 4208000000,
                            "Q2 2025": 4109000000,
                            "Q3 2025": 1607000000,
                            "Q1 2026": 3589000000,
                            "Q2 2026": 3220000000,
                            "Q3 2026": 2730000000,
                            "Q4 2026": 16928000000,
                            "Q1 2027": 1971000000
                          },
                          "sort_order": 34,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:ProceedsFromMaturitiesPrepaymentsAndCallsOfAvailableForSaleSecurities": {
                          "label": "Proceeds from Maturities, Prepayments and Calls of Debt Securities, Available-fo…",
                          "values": {
                            "Q1 2026": 3122000000,
                            "Q1 2027": 1946000000,
                            "Q3 2026": 2728000000,
                            "Q2 2026": 3130000000,
                            "Q1 2025": 4004000000,
                            "Q4 2026": 2246000000,
                            "Q3 2025": 1387000000,
                            "Q2 2025": 4094000000
                          },
                          "sort_order": 35,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:proceeds_investments"
                        },
                        "us-gaap:ProceedsFromSaleOfAvailableForSaleSecuritiesDebt": {
                          "label": "Proceeds from Sale of Debt Securities, Available-for-Sale",
                          "values": {
                            "Q1 2026": 467000000,
                            "Q1 2027": 25000000,
                            "Q3 2026": 0,
                            "Q2 2026": 20000000,
                            "Q1 2025": 149000000,
                            "Q4 2026": 14670000000,
                            "Q3 2025": 154000000,
                            "Q2 2025": 15000000
                          },
                          "sort_order": 36,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:proceeds_investments"
                        },
                        "us-gaap:ProceedsFromSaleOfEquitySecuritiesFvNi": {
                          "label": "Proceeds from Sale of Equity Securities, FV-NI",
                          "values": {
                            "Q3 2026": 2000000,
                            "Q2 2026": 70000000,
                            "Q1 2025": 55000000,
                            "Q1 2026": 0,
                            "Q4 2026": 12000000,
                            "Q3 2025": 66000000
                          },
                          "sort_order": 37,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:proceeds_investments"
                        },
                        "std:acquisitions": {
                          "label": "Acquisitions, Net of Cash",
                          "values": {
                            "Q1 2025": -39000000,
                            "Q2 2025": -278000000,
                            "Q3 2025": -148000000,
                            "Q1 2026": -383000000,
                            "Q2 2026": -294000000,
                            "Q3 2026": -693000000,
                            "Q4 2026": -13165000000,
                            "Q1 2027": -87000000
                          },
                          "sort_order": 38,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:PaymentsToAcquireBusinessesNetOfCashAcquired": {
                          "label": "Payments to Acquire Businesses, Net of Cash Acquired",
                          "values": {
                            "Q1 2026": -383000000,
                            "Q1 2027": -87000000,
                            "Q3 2026": -693000000,
                            "Q2 2026": -294000000,
                            "Q1 2025": -39000000,
                            "Q4 2026": -165000000,
                            "Q3 2025": -148000000,
                            "Q2 2025": -278000000
                          },
                          "sort_order": 39,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:acquisitions"
                        },
                        "std:other_investing": {
                          "label": "Other Investing Activities",
                          "values": {
                            "Q2 2025": -294000000,
                            "Q1 2027": -26556000000
                          },
                          "sort_order": 40,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": true
                        },
                        "nvda:ProceedsFromSaleOfNonMarketableSecurities": {
                          "label": "Proceeds From Sale Of Non Marketable Securities",
                          "values": {
                            "Q1 2026": 0,
                            "Q1 2027": 26000000
                          },
                          "sort_order": 41,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_investing"
                        },
                        "nvda:PaymentsToAcquireNonMarketableSecurities": {
                          "label": "Payments To Acquire Non Marketable Securities",
                          "values": {
                            "Q1 2026": -649000000,
                            "Q1 2027": -18582000000
                          },
                          "sort_order": 42,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:other_investing"
                        },
                        "nvda:PaymentsToAcquireMarketableDebtAndEquitySecurities": {
                          "label": "Payments To Acquire Marketable Debt And Equity Securities",
                          "values": {
                            "Q1 2026": -6546000000,
                            "Q1 2027": -8000000000
                          },
                          "sort_order": 43,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:other_investing"
                        },
                        "us-gaap:PaymentsForProceedsFromOtherInvestingActivities": {
                          "label": "Payment for (Proceeds from) Other Investing Activity",
                          "values": {
                            "Q3 2025": 0,
                            "Q2 2025": 135000000,
                            "Q1 2025": -135000000
                          },
                          "sort_order": 44,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:other_investing"
                        },
                        "std:cfi": {
                          "label": "Cash from Investing Activities",
                          "values": {
                            "Q1 2025": -5693000000,
                            "Q2 2025": -3184000000,
                            "Q3 2025": -4346000000,
                            "Q1 2026": -5216000000,
                            "Q2 2026": -7127000000,
                            "Q3 2026": -9024000000,
                            "Q4 2026": -30861000000,
                            "Q1 2027": -26429000000
                          },
                          "sort_order": 45,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:NetCashProvidedByUsedInInvestingActivities": {
                          "label": "Cash Provided by (Used in) Investing Activity, Including Discontinued Operation",
                          "values": {
                            "Q1 2026": -5216000000,
                            "Q1 2027": -26429000000,
                            "Q3 2026": -9024000000,
                            "Q2 2026": -7127000000,
                            "Q1 2025": -5693000000,
                            "Q4 2026": -30861000000,
                            "Q3 2025": -4346000000,
                            "Q2 2025": -3184000000
                          },
                          "sort_order": 46,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cfi"
                        },
                        "std:h_financing": {
                          "label": "Financing Activities",
                          "values": {},
                          "sort_order": 47,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:debt_issued": {
                          "label": "Debt Issued",
                          "values": {},
                          "sort_order": 48,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": false
                        },
                        "std:debt_repaid": {
                          "label": "Debt Repaid",
                          "values": {
                            "Q3 2025": 0,
                            "Q3 2026": 0
                          },
                          "sort_order": 49,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:RepaymentsOfDebt": {
                          "label": "Repayments of Debt",
                          "values": {
                            "Q3 2026": 0,
                            "Q4 2026": 0,
                            "Q3 2025": 0
                          },
                          "sort_order": 50,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:debt_repaid"
                        },
                        "std:stock_issued": {
                          "label": "Common Stock Issued",
                          "values": {
                            "Q1 2025": 285000000,
                            "Q2 2025": 0,
                            "Q3 2025": 204000000,
                            "Q1 2026": 370000000,
                            "Q2 2026": 0,
                            "Q3 2026": 273000000,
                            "Q4 2026": 1000000,
                            "Q1 2027": 515000000
                          },
                          "sort_order": 51,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:ProceedsFromStockPlans": {
                          "label": "Proceeds from Stock Plans",
                          "values": {
                            "Q1 2026": 370000000,
                            "Q1 2027": 515000000,
                            "Q3 2026": 273000000,
                            "Q2 2026": 0,
                            "Q1 2025": 285000000,
                            "Q4 2026": 1000000,
                            "Q3 2025": 204000000,
                            "Q2 2025": 0
                          },
                          "sort_order": 52,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:stock_issued"
                        },
                        "std:buybacks": {
                          "label": "Common Stock Repurchased",
                          "values": {
                            "Q1 2025": -7740000000,
                            "Q2 2025": -7158000000,
                            "Q3 2025": -10997000000,
                            "Q1 2026": -14095000000,
                            "Q2 2026": -9720000000,
                            "Q3 2026": -12456000000,
                            "Q4 2026": -3815000000,
                            "Q1 2027": -19312000000
                          },
                          "sort_order": 53,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:PaymentsForRepurchaseOfCommonStock": {
                          "label": "Payments for Repurchase of Common Stock",
                          "values": {
                            "Q1 2026": -14095000000,
                            "Q1 2027": -19312000000,
                            "Q3 2026": -12456000000,
                            "Q2 2026": -9720000000,
                            "Q1 2025": -7740000000,
                            "Q4 2026": -3815000000,
                            "Q3 2025": -10997000000,
                            "Q2 2025": -7158000000
                          },
                          "sort_order": 54,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:buybacks"
                        },
                        "std:dividends_paid": {
                          "label": "Dividends Paid",
                          "values": {
                            "Q1 2025": -98000000,
                            "Q2 2025": -246000000,
                            "Q3 2025": -245000000,
                            "Q1 2026": -244000000,
                            "Q2 2026": -244000000,
                            "Q3 2026": -244000000,
                            "Q4 2026": -242000000,
                            "Q1 2027": -243000000
                          },
                          "sort_order": 55,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:PaymentsOfDividends": {
                          "label": "Payments of Dividends",
                          "values": {
                            "Q1 2026": -244000000,
                            "Q1 2027": -243000000,
                            "Q3 2026": -244000000,
                            "Q2 2025": -246000000,
                            "Q2 2026": -244000000,
                            "Q1 2025": -98000000,
                            "Q4 2026": -242000000,
                            "Q3 2025": -245000000
                          },
                          "sort_order": 56,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:dividends_paid"
                        },
                        "std:other_financing": {
                          "label": "Other Financing Activities",
                          "values": {
                            "Q1 2025": -1792000000,
                            "Q2 2025": -2916000000,
                            "Q3 2025": -1707000000,
                            "Q1 2026": -1584000000,
                            "Q2 2026": -1869000000,
                            "Q3 2026": -2453000000,
                            "Q4 2026": -2152000000,
                            "Q1 2027": -2243000000
                          },
                          "sort_order": 57,
                          "depth": 1,
                          "is_header": false,
                          "computed": true,
                          "default_collapsed": true
                        },
                        "us-gaap:PaymentsRelatedToTaxWithholdingForShareBasedCompensation": {
                          "label": "Payment, Tax Withholding, Share-Based Payment Arrangement",
                          "values": {
                            "Q1 2026": -1532000000,
                            "Q1 2027": -2129000000,
                            "Q3 2026": -2429000000,
                            "Q2 2026": -1848000000,
                            "Q1 2025": -1752000000,
                            "Q4 2026": -2139000000,
                            "Q3 2025": -1679000000,
                            "Q2 2025": -1637000000
                          },
                          "sort_order": 58,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:other_financing"
                        },
                        "nvda:PaymentsForFinancedPropertyPlantAndEquipmentAndIntangibleAssetsFinancingActivities": {
                          "label": "Payments For Financed Property Plant And Equipment And Intangible Assets Financi…",
                          "values": {
                            "Q1 2026": -52000000,
                            "Q1 2027": -33000000,
                            "Q3 2026": -24000000,
                            "Q2 2026": -21000000,
                            "Q1 2025": -40000000,
                            "Q4 2026": -4000000,
                            "Q3 2025": -28000000,
                            "Q2 2025": -29000000
                          },
                          "sort_order": 59,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "std:other_financing"
                        },
                        "us-gaap:ProceedsFromPaymentsForOtherFinancingActivities": {
                          "label": "Proceeds from (Payment for) Other Financing Activity",
                          "values": {
                            "Q1 2026": 0,
                            "Q1 2027": -81000000
                          },
                          "sort_order": 60,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:other_financing"
                        },
                        "std:cff": {
                          "label": "Cash from Financing Activities",
                          "values": {
                            "Q1 2025": -9345000000,
                            "Q2 2025": -10320000000,
                            "Q3 2025": -12745000000,
                            "Q1 2026": -15553000000,
                            "Q2 2026": -11833000000,
                            "Q3 2026": -14880000000,
                            "Q4 2026": -6208000000,
                            "Q1 2027": -21283000000
                          },
                          "sort_order": 61,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:NetCashProvidedByUsedInFinancingActivities": {
                          "label": "Cash Provided by (Used in) Financing Activity, Including Discontinued Operation",
                          "values": {
                            "Q1 2026": -15553000000,
                            "Q1 2027": -21283000000,
                            "Q3 2026": -14880000000,
                            "Q2 2026": -11833000000,
                            "Q1 2025": -9345000000,
                            "Q4 2026": -6208000000,
                            "Q3 2025": -12745000000,
                            "Q2 2025": -10320000000
                          },
                          "sort_order": 62,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cff"
                        },
                        "std:h_cash_recon": {
                          "label": "Cash Reconciliation",
                          "values": {},
                          "sort_order": 63,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:net_change_cash": {
                          "label": "Net Change in Cash",
                          "values": {
                            "Q1 2025": 307000000,
                            "Q2 2025": 984000000,
                            "Q3 2025": 536000000,
                            "Q1 2026": 6645000000,
                            "Q2 2026": -3595000000,
                            "Q3 2026": -153000000,
                            "Q4 2026": -881000000,
                            "Q1 2027": 2632000000
                          },
                          "sort_order": 64,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalentsPeriodIncreaseDecreaseIncludingExchangeRateEffect": {
                          "label": "Cash, Cash Equivalent, Restricted Cash, and Restricted Cash Equivalent, Period I…",
                          "values": {
                            "Q1 2026": 6645000000,
                            "Q1 2027": 2632000000,
                            "Q3 2026": -153000000,
                            "Q2 2026": -3595000000,
                            "Q1 2025": 307000000,
                            "Q4 2026": -881000000,
                            "Q3 2025": 536000000,
                            "Q2 2025": 984000000
                          },
                          "sort_order": 65,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:net_change_cash"
                        },
                        "std:cash_end": {
                          "label": "Cash at End of Period",
                          "values": {
                            "Q1 2025": 7587000000,
                            "Q2 2025": 8571000000,
                            "Q3 2025": 9107000000,
                            "Q1 2026": 15234000000,
                            "Q2 2026": 11639000000,
                            "Q3 2026": 11486000000,
                            "Q4 2026": 10605000000,
                            "Q1 2027": 13237000000
                          },
                          "sort_order": 66,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalents": {
                          "label": "Cash, Cash Equivalent, Restricted Cash, and Restricted Cash Equivalent, Continui…",
                          "values": {
                            "Q1 2026": 15234000000,
                            "Q4 2026": 10605000000,
                            "Q1 2027": 13237000000,
                            "Q3 2025": 9107000000,
                            "Q3 2026": 11486000000,
                            "Q2 2025": 8571000000,
                            "Q2 2026": 11639000000,
                            "Q1 2025": 7587000000
                          },
                          "sort_order": 67,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cash_end"
                        },
                        "us-gaap:CashAndCashEquivalentsAtCarryingValue": {
                          "label": "Cash and Cash Equivalents, at Carrying Value",
                          "values": {
                            "Q1 2027": 13237000000,
                            "Q4 2026": 10605000000,
                            "Q3 2026": 11486000000,
                            "Q2 2026": 11639000000,
                            "Q1 2026": 15234000000,
                            "Q3 2025": 9107000000,
                            "Q2 2025": 8563000000,
                            "Q1 2025": 7587000000
                          },
                          "sort_order": 68,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cash_end"
                        },
                        "us-gaap:RestrictedCashCurrent": {
                          "label": "Restricted Cash, Current",
                          "values": {
                            "Q2 2025": 8000000
                          },
                          "sort_order": 69,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:cash_end"
                        },
                        "std:h_fcf": {
                          "label": "Free Cash Flow",
                          "values": {},
                          "sort_order": 70,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:fcf": {
                          "label": "Free Cash Flow",
                          "values": {
                            "Q1 2025": 14976000000,
                            "Q2 2025": 13511000000,
                            "Q3 2025": 16814000000,
                            "Q1 2026": 26187000000,
                            "Q2 2026": 13470000000,
                            "Q3 2026": 22115000000,
                            "Q4 2026": 34904000000,
                            "Q1 2027": 48587000000
                          },
                          "sort_order": 71,
                          "depth": 1,
                          "is_header": false,
                          "is_total": true,
                          "computed": true,
                          "default_collapsed": false
                        },
                        "std:h_supplemental_cf": {
                          "label": "Supplemental",
                          "values": {},
                          "sort_order": 72,
                          "depth": 0,
                          "is_header": true
                        },
                        "std:taxes_paid": {
                          "label": "Income Taxes Paid",
                          "values": {
                            "Q3 2025": 3540000000,
                            "Q3 2026": 4858000000
                          },
                          "sort_order": 73,
                          "depth": 1,
                          "is_header": false,
                          "computed": false,
                          "default_collapsed": true
                        },
                        "us-gaap:IncomeTaxesPaidNet": {
                          "label": "Income Taxes Paid, Net",
                          "values": {
                            "Q3 2026": 4858000000,
                            "Q4 2026": 6979000000,
                            "Q3 2025": 3540000000
                          },
                          "sort_order": 74,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "std:taxes_paid"
                        }
                      }
                    },
                    "income_statement_reported": {
                      "data": {
                        "us-gaap:Revenues": {
                          "label": "Revenues",
                          "values": {
                            "Q1 2026": 44062000000,
                            "Q1 2027": 81615000000,
                            "Q3 2025": 35082000000,
                            "Q3 2026": 57006000000,
                            "Q2 2025": 30040000000,
                            "Q2 2026": 46743000000,
                            "Q1 2025": 26044000000,
                            "Q4 2026": 68127000000
                          },
                          "sort_order": 0,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:GrossProfit"
                        },
                        "us-gaap:CostOfRevenue": {
                          "label": "Cost of Revenue",
                          "values": {
                            "Q1 2026": 17394000000,
                            "Q1 2027": 20458000000,
                            "Q3 2025": 8926000000,
                            "Q3 2026": 15157000000,
                            "Q2 2025": 7466000000,
                            "Q2 2026": 12890000000,
                            "Q1 2025": 5638000000,
                            "Q4 2026": 17034000000
                          },
                          "sort_order": 1,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:GrossProfit"
                        },
                        "us-gaap:GrossProfit": {
                          "label": "Gross Profit",
                          "values": {
                            "Q1 2026": 26668000000,
                            "Q1 2027": 61157000000,
                            "Q3 2025": 26156000000,
                            "Q3 2026": 41849000000,
                            "Q2 2025": 22574000000,
                            "Q2 2026": 33853000000,
                            "Q1 2025": 20406000000,
                            "Q4 2026": 51093000000
                          },
                          "sort_order": 2,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:OperatingIncomeLoss"
                        },
                        "us-gaap:OperatingExpensesAbstract": {
                          "label": "Operating Expenses",
                          "values": {},
                          "sort_order": 3,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:ResearchAndDevelopmentExpense": {
                          "label": "Research and Development Expense",
                          "values": {
                            "Q1 2026": 3989000000,
                            "Q1 2027": 6321000000,
                            "Q3 2025": 3390000000,
                            "Q3 2026": 4705000000,
                            "Q2 2025": 3090000000,
                            "Q2 2026": 4291000000,
                            "Q1 2025": 2720000000,
                            "Q4 2026": 5512000000
                          },
                          "sort_order": 4,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:OperatingExpenses"
                        },
                        "us-gaap:SellingGeneralAndAdministrativeExpense": {
                          "label": "Selling, General and Administrative Expense",
                          "values": {
                            "Q1 2026": 1041000000,
                            "Q1 2027": 1300000000,
                            "Q3 2025": 897000000,
                            "Q3 2026": 1134000000,
                            "Q2 2025": 842000000,
                            "Q2 2026": 1122000000,
                            "Q1 2025": 777000000,
                            "Q4 2026": 1282000000
                          },
                          "sort_order": 5,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:OperatingExpenses"
                        },
                        "us-gaap:OperatingExpenses": {
                          "label": "Operating Expenses",
                          "values": {
                            "Q1 2026": 5030000000,
                            "Q1 2027": 7621000000,
                            "Q3 2025": 4287000000,
                            "Q3 2026": 5839000000,
                            "Q2 2025": 3932000000,
                            "Q2 2026": 5413000000,
                            "Q1 2025": 3497000000,
                            "Q4 2026": 6794000000
                          },
                          "sort_order": 6,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:OperatingIncomeLoss"
                        },
                        "us-gaap:OperatingIncomeLoss": {
                          "label": "Operating Income (Loss)",
                          "values": {
                            "Q1 2026": 21638000000,
                            "Q1 2027": 53536000000,
                            "Q3 2025": 21869000000,
                            "Q3 2026": 36010000000,
                            "Q2 2025": 18642000000,
                            "Q2 2026": 28440000000,
                            "Q1 2025": 16909000000,
                            "Q4 2026": 44299000000
                          },
                          "sort_order": 7,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesExtraordinaryItemsNon…"
                        },
                        "us-gaap:InvestmentIncomeInterest": {
                          "label": "Investment Income, Interest",
                          "values": {
                            "Q1 2026": 515000000,
                            "Q1 2027": 540000000,
                            "Q3 2025": 472000000,
                            "Q3 2026": 624000000,
                            "Q2 2025": 444000000,
                            "Q2 2026": 592000000,
                            "Q1 2025": 359000000,
                            "Q4 2026": 568000000
                          },
                          "sort_order": 8,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NonoperatingIncomeExpense"
                        },
                        "us-gaap:InterestExpenseNonoperating": {
                          "label": "Interest Expense, Nonoperating",
                          "values": {
                            "Q1 2026": -63000000,
                            "Q1 2027": -102000000,
                            "Q3 2025": -61000000,
                            "Q3 2026": -61000000,
                            "Q2 2025": -61000000,
                            "Q2 2026": -62000000,
                            "Q1 2025": -64000000,
                            "Q4 2026": -73000000
                          },
                          "sort_order": 10,
                          "depth": 0,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "merged_from": [
                            "Interest Expense"
                          ],
                          "parent_key": "us-gaap:NonoperatingIncomeExpense"
                        },
                        "us-gaap:OtherNonoperatingIncomeExpense": {
                          "label": "Other Nonoperating Income (Expense)",
                          "values": {
                            "Q1 2026": -180000000,
                            "Q1 2027": 15929000000,
                            "Q3 2025": 36000000,
                            "Q3 2026": 1363000000,
                            "Q2 2025": 189000000,
                            "Q2 2026": 2236000000,
                            "Q1 2025": 75000000,
                            "Q4 2026": 5604000000
                          },
                          "sort_order": 11,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NonoperatingIncomeExpense"
                        },
                        "us-gaap:NonoperatingIncomeExpense": {
                          "label": "Nonoperating Income (Expense)",
                          "values": {
                            "Q1 2026": 272000000,
                            "Q1 2027": 16367000000,
                            "Q3 2025": 447000000,
                            "Q3 2026": 1926000000,
                            "Q2 2025": 572000000,
                            "Q2 2026": 2766000000,
                            "Q1 2025": 370000000,
                            "Q4 2026": 6099000000
                          },
                          "sort_order": 12,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesExtraordinaryItemsNon…"
                        },
                        "us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesExtraordinaryItemsNoncontrollingInterest": {
                          "label": "Income (Loss) from Continuing Operations before Income Taxes, Noncontrolling Int…",
                          "values": {
                            "Q1 2026": 21910000000,
                            "Q1 2027": 69903000000,
                            "Q3 2025": 22316000000,
                            "Q3 2026": 37936000000,
                            "Q2 2025": 19214000000,
                            "Q2 2026": 31206000000,
                            "Q1 2025": 17279000000,
                            "Q4 2026": 50398000000
                          },
                          "sort_order": 13,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetIncomeLoss"
                        },
                        "us-gaap:IncomeTaxExpenseBenefit": {
                          "label": "Income Tax Expense (Benefit)",
                          "values": {
                            "Q1 2026": 3135000000,
                            "Q1 2027": 11582000000,
                            "Q3 2025": 3007000000,
                            "Q3 2026": 6026000000,
                            "Q2 2025": 2615000000,
                            "Q2 2026": 4784000000,
                            "Q1 2025": 2398000000,
                            "Q4 2026": 7438000000
                          },
                          "sort_order": 14,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetIncomeLoss"
                        },
                        "us-gaap:NetIncomeLoss": {
                          "label": "Net Income (Loss) Attributable to Parent",
                          "values": {
                            "Q1 2026": 18775000000,
                            "Q1 2027": 58321000000,
                            "Q3 2025": 19309000000,
                            "Q3 2026": 31910000000,
                            "Q2 2025": 16599000000,
                            "Q2 2026": 26422000000,
                            "Q1 2025": 14881000000,
                            "Q4 2026": 42960000000
                          },
                          "sort_order": 15,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:EarningsPerShareAbstract": {
                          "label": "Earnings Per Share",
                          "values": {},
                          "sort_order": 16,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": true
                        },
                        "us-gaap:EarningsPerShareBasic": {
                          "label": "Earnings Per Share, Basic",
                          "values": {
                            "Q1 2026": 0.77,
                            "Q1 2027": 2.4,
                            "Q3 2025": 0.79,
                            "Q3 2026": 1.31,
                            "Q2 2025": 0.68,
                            "Q2 2026": 1.08,
                            "Q1 2025": 0.6,
                            "Q4 2026": 1.77
                          },
                          "sort_order": 17,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": true,
                          "parent_key": "us-gaap:EarningsPerShareAbstract"
                        },
                        "us-gaap:EarningsPerShareDiluted": {
                          "label": "Earnings Per Share, Diluted",
                          "values": {
                            "Q1 2026": 0.76,
                            "Q1 2027": 2.39,
                            "Q3 2025": 0.78,
                            "Q3 2026": 1.3,
                            "Q2 2025": 0.67,
                            "Q2 2026": 1.08,
                            "Q1 2025": 0.6,
                            "Q4 2026": 1.76
                          },
                          "sort_order": 18,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": true,
                          "parent_key": "us-gaap:EarningsPerShareAbstract"
                        },
                        "us-gaap:WeightedAverageNumberOfSharesOutstandingDilutedDisclosureItemsAbstract": {
                          "label": "Weighted Average Number of Shares Outstanding Reconciliation",
                          "values": {},
                          "sort_order": 19,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:WeightedAverageNumberOfSharesOutstandingBasic": {
                          "label": "Weighted Average Number of Shares Outstanding, Basic",
                          "values": {
                            "Q1 2026": 24441000000,
                            "Q1 2027": 24286000000,
                            "Q3 2025": 24533000000,
                            "Q3 2026": 24327000000,
                            "Q2 2025": 24578000000,
                            "Q2 2026": 24366000000,
                            "Q1 2025": 24620000000
                          },
                          "sort_order": 20,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding"
                        },
                        "us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding": {
                          "label": "Weighted Average Number of Shares Outstanding, Diluted",
                          "values": {
                            "Q1 2026": 24611000000,
                            "Q1 2027": 24391000000,
                            "Q3 2025": 24774000000,
                            "Q3 2026": 24483000000,
                            "Q2 2025": 24848000000,
                            "Q2 2026": 24532000000,
                            "Q1 2025": 24890000000
                          },
                          "sort_order": 21,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:WeightedAverageNumberOfSharesOutstandingDilutedDisclosureItemsAbstract"
                        }
                      }
                    },
                    "balance_sheet_reported": {
                      "data": {
                        "us-gaap:AssetsAbstract": {
                          "label": "Assets",
                          "values": {},
                          "sort_order": 0,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:AssetsCurrentAbstract": {
                          "label": "Assets, Current",
                          "values": {},
                          "sort_order": 1,
                          "depth": 1,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsAbstract"
                        },
                        "us-gaap:CashAndCashEquivalentsAtCarryingValue": {
                          "label": "Cash and Cash Equivalent",
                          "values": {
                            "Q1 2027": 13237000000,
                            "Q4 2026": 10605000000,
                            "Q3 2026": 11486000000,
                            "Q2 2026": 11639000000,
                            "Q1 2026": 15234000000,
                            "Q3 2025": 9107000000,
                            "Q2 2025": 8563000000,
                            "Q1 2025": 7587000000
                          },
                          "sort_order": 2,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "nvda:MarketableSecuritiesAndEquitySecuritiesFVNI": {
                          "label": "Marketable Securities And Equity Securities FVNI",
                          "values": {
                            "Q3 2026": 49122000000,
                            "Q2 2026": 45152000000,
                            "Q1 2026": 38457000000,
                            "Q4 2026": 51951000000,
                            "Q3 2025": 29380000000,
                            "Q2 2025": 26237000000
                          },
                          "sort_order": 3,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "us-gaap:MarketableSecuritiesCurrent": {
                          "label": "Marketable Securities, Current",
                          "values": {
                            "Q3 2026": 49122000000,
                            "Q2 2026": 45152000000,
                            "Q1 2026": 38457000000,
                            "Q3 2025": 29380000000,
                            "Q2 2025": 26237000000,
                            "Q1 2025": 23851000000
                          },
                          "sort_order": 4,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "us-gaap:DebtSecuritiesCurrent": {
                          "label": "Debt Securities, Current",
                          "values": {
                            "Q1 2027": 37098000000,
                            "Q4 2026": 39065000000
                          },
                          "sort_order": 5,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "us-gaap:EquitySecuritiesFvNi": {
                          "label": "Equity Securities, FV-NI, Current",
                          "values": {
                            "Q1 2027": 30237000000,
                            "Q4 2026": 12886000000
                          },
                          "sort_order": 6,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "us-gaap:AccountsReceivableNetCurrent": {
                          "label": "Accounts Receivable, after Allowance for Credit Loss, Current",
                          "values": {
                            "Q1 2027": 40710000000,
                            "Q4 2026": 38466000000,
                            "Q3 2026": 33391000000,
                            "Q2 2026": 27808000000,
                            "Q1 2026": 22132000000,
                            "Q3 2025": 17693000000,
                            "Q2 2025": 14132000000,
                            "Q1 2025": 12365000000
                          },
                          "sort_order": 7,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "us-gaap:InventoryNet": {
                          "label": "Inventory, Net",
                          "values": {
                            "Q1 2027": 25797000000,
                            "Q4 2026": 21403000000,
                            "Q3 2026": 19784000000,
                            "Q2 2026": 14962000000,
                            "Q1 2026": 11333000000,
                            "Q3 2025": 7654000000,
                            "Q2 2025": 6675000000,
                            "Q1 2025": 5864000000
                          },
                          "sort_order": 8,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "us-gaap:PrepaidExpenseAndOtherAssetsCurrent": {
                          "label": "Prepaid Expense and Other Assets, Current",
                          "values": {
                            "Q1 2027": 3916000000,
                            "Q4 2026": 3180000000,
                            "Q3 2026": 2709000000,
                            "Q2 2026": 2658000000,
                            "Q1 2026": 2779000000,
                            "Q3 2025": 3806000000,
                            "Q2 2025": 4026000000,
                            "Q1 2025": 4062000000
                          },
                          "sort_order": 9,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsCurrent"
                        },
                        "us-gaap:AssetsCurrent": {
                          "label": "Assets, Current",
                          "values": {
                            "Q1 2027": 150995000000,
                            "Q4 2026": 125605000000,
                            "Q3 2026": 116492000000,
                            "Q2 2026": 102219000000,
                            "Q1 2026": 89935000000,
                            "Q3 2025": 67640000000,
                            "Q2 2025": 59633000000,
                            "Q1 2025": 53729000000
                          },
                          "sort_order": 10,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:PropertyPlantAndEquipmentNet": {
                          "label": "Property, Plant and Equipment, Net",
                          "values": {
                            "Q1 2027": 12403000000,
                            "Q4 2026": 10383000000,
                            "Q3 2026": 9780000000,
                            "Q2 2026": 9141000000,
                            "Q1 2026": 7136000000,
                            "Q3 2025": 5343000000,
                            "Q2 2025": 4885000000,
                            "Q1 2025": 4006000000
                          },
                          "sort_order": 11,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:OperatingLeaseRightOfUseAsset": {
                          "label": "Operating Lease, Right-of-Use Asset",
                          "values": {
                            "Q1 2027": 4258000000,
                            "Q4 2026": 2867000000,
                            "Q3 2026": 2281000000,
                            "Q2 2026": 2084000000,
                            "Q1 2026": 1810000000,
                            "Q3 2025": 1755000000,
                            "Q2 2025": 1556000000,
                            "Q1 2025": 1532000000
                          },
                          "sort_order": 12,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:Goodwill": {
                          "label": "Goodwill",
                          "values": {
                            "Q1 2027": 20894000000,
                            "Q4 2026": 20832000000,
                            "Q3 2026": 6261000000,
                            "Q2 2026": 5755000000,
                            "Q1 2026": 5498000000,
                            "Q3 2025": 4724000000,
                            "Q2 2025": 4622000000,
                            "Q1 2025": 4453000000
                          },
                          "sort_order": 13,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:IntangibleAssetsNetExcludingGoodwill": {
                          "label": "Intangible Assets, Net (Excluding Goodwill)",
                          "values": {
                            "Q1 2027": 3120000000,
                            "Q4 2026": 3306000000,
                            "Q3 2026": 936000000,
                            "Q2 2026": 755000000,
                            "Q1 2026": 769000000,
                            "Q3 2025": 838000000,
                            "Q2 2025": 952000000,
                            "Q1 2025": 986000000
                          },
                          "sort_order": 14,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:DeferredIncomeTaxAssetsNet": {
                          "label": "Deferred Income Tax Assets, Net",
                          "values": {
                            "Q1 2027": 11707000000,
                            "Q4 2026": 13258000000,
                            "Q3 2026": 13674000000,
                            "Q2 2026": 13570000000,
                            "Q1 2026": 13318000000,
                            "Q3 2025": 10276000000,
                            "Q2 2025": 9578000000,
                            "Q1 2025": 7798000000
                          },
                          "sort_order": 15,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:EquitySecuritiesFVNINoncurrent": {
                          "label": "Equity Securities, FV-NI, Noncurrent",
                          "values": {
                            "Q3 2026": 8187000000,
                            "Q2 2026": 3799000000,
                            "Q1 2026": 3240000000,
                            "Q4 2026": 22251000000,
                            "Q3 2025": 2237000000,
                            "Q2 2025": 1819000000
                          },
                          "sort_order": 16,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:OtherAssetsNoncurrent"
                        },
                        "nvda:NonMarketableSecurities": {
                          "label": "Non Marketable Securities",
                          "values": {
                            "Q1 2027": 43364000000,
                            "Q4 2026": 22251000000
                          },
                          "sort_order": 17,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:OtherAssetsNoncurrent": {
                          "label": "Other Assets, Noncurrent",
                          "values": {
                            "Q1 2027": 12733000000,
                            "Q4 2026": 8301000000,
                            "Q3 2026": 11724000000,
                            "Q2 2026": 7216000000,
                            "Q1 2026": 6788000000,
                            "Q3 2025": 5437000000,
                            "Q2 2025": 4001000000,
                            "Q1 2025": 4568000000
                          },
                          "sort_order": 18,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Assets"
                        },
                        "us-gaap:Assets": {
                          "label": "Assets",
                          "values": {
                            "Q1 2027": 259474000000,
                            "Q4 2026": 206803000000,
                            "Q3 2026": 161148000000,
                            "Q2 2026": 140740000000,
                            "Q1 2026": 125254000000,
                            "Q3 2025": 96013000000,
                            "Q2 2025": 85227000000,
                            "Q1 2025": 77072000000
                          },
                          "sort_order": 19,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AssetsAbstract"
                        },
                        "us-gaap:LiabilitiesAndStockholdersEquityAbstract": {
                          "label": "Liabilities and Equity",
                          "values": {},
                          "sort_order": 20,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:LiabilitiesCurrentAbstract": {
                          "label": "Liabilities, Current",
                          "values": {},
                          "sort_order": 21,
                          "depth": 1,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesAndStockholdersEquityAbstract"
                        },
                        "us-gaap:AccountsPayableCurrent": {
                          "label": "Accounts Payable, Current",
                          "values": {
                            "Q1 2027": 13097000000,
                            "Q4 2026": 9812000000,
                            "Q3 2026": 8624000000,
                            "Q2 2026": 9064000000,
                            "Q1 2026": 7331000000,
                            "Q3 2025": 5353000000,
                            "Q2 2025": 3680000000,
                            "Q1 2025": 2715000000
                          },
                          "sort_order": 22,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesCurrent"
                        },
                        "us-gaap:AccruedLiabilitiesCurrent": {
                          "label": "Accrued Liabilities, Current",
                          "values": {
                            "Q1 2027": 29787000000,
                            "Q4 2026": 21352000000,
                            "Q3 2026": 16452000000,
                            "Q2 2026": 15193000000,
                            "Q1 2026": 19211000000,
                            "Q3 2025": 11126000000,
                            "Q2 2025": 10289000000,
                            "Q1 2025": 11258000000
                          },
                          "sort_order": 23,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesCurrent"
                        },
                        "us-gaap:DebtCurrent": {
                          "label": "Debt, Current",
                          "values": {
                            "Q1 2027": 1000000000,
                            "Q4 2026": 999000000,
                            "Q3 2026": 999000000,
                            "Q3 2025": 0,
                            "Q2 2025": 0,
                            "Q1 2025": 1250000000
                          },
                          "sort_order": 24,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesCurrent"
                        },
                        "us-gaap:LiabilitiesCurrent": {
                          "label": "Liabilities, Current",
                          "values": {
                            "Q1 2027": 43884000000,
                            "Q4 2026": 32163000000,
                            "Q3 2026": 26075000000,
                            "Q2 2026": 24257000000,
                            "Q1 2026": 26542000000,
                            "Q3 2025": 16479000000,
                            "Q2 2025": 13969000000,
                            "Q1 2025": 15223000000
                          },
                          "sort_order": 25,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Liabilities"
                        },
                        "us-gaap:LongTermDebtNoncurrent": {
                          "label": "Long-Term Debt, Excluding Current Maturities",
                          "values": {
                            "Q1 2027": 7470000000,
                            "Q4 2026": 7469000000,
                            "Q3 2026": 7468000000,
                            "Q2 2026": 8466000000,
                            "Q1 2026": 8464000000,
                            "Q3 2025": 8462000000,
                            "Q2 2025": 8461000000,
                            "Q1 2025": 8460000000
                          },
                          "sort_order": 26,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Liabilities"
                        },
                        "us-gaap:OperatingLeaseLiabilityNoncurrent": {
                          "label": "Operating Lease, Liability, Noncurrent",
                          "values": {
                            "Q1 2027": 3878000000,
                            "Q4 2026": 2572000000,
                            "Q3 2026": 2014000000,
                            "Q2 2026": 1831000000,
                            "Q1 2026": 1521000000,
                            "Q3 2025": 1490000000,
                            "Q2 2025": 1304000000,
                            "Q1 2025": 1281000000
                          },
                          "sort_order": 27,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Liabilities"
                        },
                        "us-gaap:OtherLiabilitiesNoncurrent": {
                          "label": "Other Liabilities, Noncurrent",
                          "values": {
                            "Q1 2027": 8768000000,
                            "Q4 2026": 7306000000,
                            "Q3 2026": 6694000000,
                            "Q2 2026": 6055000000,
                            "Q1 2026": 4884000000,
                            "Q3 2025": 3683000000,
                            "Q2 2025": 3336000000,
                            "Q1 2025": 2966000000
                          },
                          "sort_order": 28,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:Liabilities"
                        },
                        "us-gaap:Liabilities": {
                          "label": "Liabilities",
                          "values": {
                            "Q1 2027": 64000000000,
                            "Q4 2026": 49510000000,
                            "Q3 2026": 42251000000,
                            "Q2 2026": 40609000000,
                            "Q1 2026": 41411000000,
                            "Q3 2025": 30114000000,
                            "Q2 2025": 27070000000,
                            "Q1 2025": 27930000000
                          },
                          "sort_order": 29,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesAndStockholdersEquity"
                        },
                        "us-gaap:CommitmentsAndContingencies": {
                          "label": "Commitments and Contingencies",
                          "values": {
                            "Q4 2026": 0
                          },
                          "sort_order": 30,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesAndStockholdersEquity"
                        },
                        "us-gaap:StockholdersEquityIncludingPortionAttributableToNoncontrollingInterestAbstract": {
                          "label": "Equity, Including Portion Attributable to Noncontrolling Interest",
                          "values": {},
                          "sort_order": 31,
                          "depth": 1,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesAndStockholdersEquityAbstract"
                        },
                        "us-gaap:PreferredStockValueOutstanding": {
                          "label": "Preferred Stock, Value, Outstanding",
                          "values": {
                            "Q1 2027": 0,
                            "Q4 2026": 0,
                            "Q3 2026": 0,
                            "Q2 2026": 0,
                            "Q1 2026": 0,
                            "Q3 2025": 0,
                            "Q2 2025": 0,
                            "Q1 2025": 0
                          },
                          "sort_order": 32,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:StockholdersEquity"
                        },
                        "us-gaap:CommonStockValue": {
                          "label": "Common Stock, Value, Issued",
                          "values": {
                            "Q1 2027": 24000000,
                            "Q4 2026": 24000000,
                            "Q3 2026": 24000000,
                            "Q2 2026": 24000000,
                            "Q1 2026": 24000000,
                            "Q3 2025": 25000000,
                            "Q2 2025": 25000000,
                            "Q1 2025": 2000000
                          },
                          "sort_order": 33,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:StockholdersEquity"
                        },
                        "us-gaap:AdditionalPaidInCapital": {
                          "label": "Additional Paid in Capital",
                          "values": {
                            "Q1 2027": 10275000000,
                            "Q4 2026": 10118000000,
                            "Q3 2026": 10626000000,
                            "Q2 2026": 11200000000,
                            "Q1 2026": 11475000000,
                            "Q3 2025": 11821000000,
                            "Q2 2025": 12115000000,
                            "Q1 2025": 12651000000
                          },
                          "sort_order": 34,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:StockholdersEquity"
                        },
                        "us-gaap:AccumulatedOtherComprehensiveIncomeLossNetOfTax": {
                          "label": "Accumulated Other Comprehensive Income (Loss), Net of Tax",
                          "values": {
                            "Q1 2027": 137000000,
                            "Q4 2026": 178000000,
                            "Q3 2026": 339000000,
                            "Q2 2026": 170000000,
                            "Q1 2026": 186000000,
                            "Q3 2025": 103000000,
                            "Q2 2025": 56000000,
                            "Q1 2025": -109000000
                          },
                          "sort_order": 35,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:StockholdersEquity"
                        },
                        "us-gaap:RetainedEarningsAccumulatedDeficit": {
                          "label": "Retained Earnings (Accumulated Deficit)",
                          "values": {
                            "Q1 2027": 185038000000,
                            "Q4 2026": 146973000000,
                            "Q3 2026": 107908000000,
                            "Q2 2026": 88737000000,
                            "Q1 2026": 72158000000,
                            "Q3 2025": 53950000000,
                            "Q2 2025": 45961000000,
                            "Q1 2025": 36598000000
                          },
                          "sort_order": 36,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:StockholdersEquity"
                        },
                        "us-gaap:StockholdersEquity": {
                          "label": "Equity, Attributable to Parent",
                          "values": {
                            "Q1 2026": 83843000000,
                            "Q1 2027": 195474000000,
                            "Q4 2026": 157293000000,
                            "Q2 2025": 58157000000,
                            "Q3 2025": 65899000000,
                            "Q3 2026": 118897000000,
                            "Q2 2026": 100131000000,
                            "Q1 2025": 49142000000
                          },
                          "sort_order": 37,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesAndStockholdersEquity"
                        },
                        "us-gaap:LiabilitiesAndStockholdersEquity": {
                          "label": "Liabilities and Equity",
                          "values": {
                            "Q1 2027": 259474000000,
                            "Q4 2026": 206803000000,
                            "Q3 2026": 161148000000,
                            "Q2 2026": 140740000000,
                            "Q1 2026": 125254000000,
                            "Q3 2025": 96013000000,
                            "Q2 2025": 85227000000,
                            "Q1 2025": 77072000000
                          },
                          "sort_order": 38,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:LiabilitiesAndStockholdersEquityAbstract"
                        }
                      }
                    },
                    "cash_flow_statement_reported": {
                      "data": {
                        "us-gaap:NetCashProvidedByUsedInOperatingActivitiesAbstract": {
                          "label": "Cash Provided by (Used in) Operating Activity, Including Discontinued Operation",
                          "values": {},
                          "sort_order": 0,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:NetIncomeLoss": {
                          "label": "Net Income (Loss) Attributable to Parent",
                          "values": {
                            "Q1 2026": 18775000000,
                            "Q1 2027": 58321000000,
                            "Q3 2025": 19309000000,
                            "Q3 2026": 31910000000,
                            "Q2 2025": 16599000000,
                            "Q2 2026": 26422000000,
                            "Q1 2025": 14881000000,
                            "Q4 2026": 42960000000
                          },
                          "sort_order": 1,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:AdjustmentsToReconcileNetIncomeLossToCashProvidedByUsedInOperatingActivitiesAbstract": {
                          "label": "Adjustment to Reconcile Net Income to Cash Provided by (Used in) Operating Activ…",
                          "values": {},
                          "sort_order": 2,
                          "depth": 1,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivitiesAbstract"
                        },
                        "us-gaap:ShareBasedCompensation": {
                          "label": "Share-Based Payment Arrangement, Noncash Expense",
                          "values": {
                            "Q1 2026": 1474000000,
                            "Q1 2027": 1928000000,
                            "Q3 2026": 1654000000,
                            "Q2 2026": 1625000000,
                            "Q1 2025": 1011000000,
                            "Q4 2026": 1633000000,
                            "Q3 2025": 1252000000,
                            "Q2 2025": 1153000000
                          },
                          "sort_order": 3,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:DeferredIncomeTaxExpenseBenefit": {
                          "label": "Deferred Income Tax Expense (Benefit)",
                          "values": {
                            "Q1 2026": -2177000000,
                            "Q1 2027": 1584000000,
                            "Q3 2026": 125000000,
                            "Q2 2026": 17000000,
                            "Q1 2025": -1577000000,
                            "Q4 2026": 611000000,
                            "Q3 2025": -603000000,
                            "Q2 2025": -1699000000
                          },
                          "sort_order": 4,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:DepreciationDepletionAndAmortization": {
                          "label": "Depreciation, Depletion and Amortization",
                          "values": {
                            "Q1 2026": 611000000,
                            "Q1 2027": 997000000,
                            "Q3 2026": 751000000,
                            "Q2 2026": 669000000,
                            "Q1 2025": 410000000,
                            "Q4 2026": 812000000,
                            "Q3 2025": 478000000,
                            "Q2 2025": 433000000
                          },
                          "sort_order": 5,
                          "depth": 2,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:GainLossOnInvestments": {
                          "label": "Gain (Loss) on Investments",
                          "values": {
                            "Q1 2026": 175000000,
                            "Q1 2027": -15936000000,
                            "Q3 2026": -1353000000,
                            "Q2 2026": -2248000000,
                            "Q1 2025": -69000000,
                            "Q4 2026": -5492000000,
                            "Q3 2025": -38000000,
                            "Q2 2025": -195000000
                          },
                          "sort_order": 6,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:OtherNoncashIncomeExpense": {
                          "label": "Other Noncash Income (Expense)",
                          "values": {
                            "Q1 2026": -98000000,
                            "Q1 2027": -94000000,
                            "Q3 2026": -80000000,
                            "Q2 2026": -98000000,
                            "Q1 2025": -145000000,
                            "Q4 2026": -11000000,
                            "Q3 2025": -77000000,
                            "Q2 2025": -143000000
                          },
                          "sort_order": 7,
                          "depth": 2,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:IncreaseDecreaseInOperatingCapitalAbstract": {
                          "label": "Adjustment to Reconcile Net Income to Cash Provided by (Used in) Operating Activ…",
                          "values": {},
                          "sort_order": 8,
                          "depth": 2,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:AdjustmentsToReconcileNetIncomeLossToCashProvidedByUsedInOperatingActivi…"
                        },
                        "us-gaap:IncreaseDecreaseInAccountsReceivable": {
                          "label": "Increase (Decrease) in Accounts Receivable",
                          "values": {
                            "Q1 2026": 933000000,
                            "Q1 2027": -2243000000,
                            "Q3 2026": -5582000000,
                            "Q2 2026": -5676000000,
                            "Q1 2025": -2366000000,
                            "Q4 2026": -5074000000,
                            "Q3 2025": -3561000000,
                            "Q2 2025": -1767000000
                          },
                          "sort_order": 9,
                          "depth": 3,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:IncreaseDecreaseInInventories": {
                          "label": "Increase (Decrease) in Inventories",
                          "values": {
                            "Q1 2026": -1258000000,
                            "Q1 2027": -4420000000,
                            "Q3 2026": -4823000000,
                            "Q2 2026": -3622000000,
                            "Q1 2025": -577000000,
                            "Q4 2026": -1621000000,
                            "Q3 2025": -977000000,
                            "Q2 2025": -803000000
                          },
                          "sort_order": 10,
                          "depth": 3,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:IncreaseDecreaseInPrepaidDeferredExpenseAndOtherAssets": {
                          "label": "Increase (Decrease) in Prepaid Expense and Other Assets",
                          "values": {
                            "Q1 2026": 560000000,
                            "Q1 2027": -983000000,
                            "Q3 2026": -89000000,
                            "Q2 2026": 386000000,
                            "Q1 2025": -726000000,
                            "Q4 2026": -280000000,
                            "Q3 2025": -714000000,
                            "Q2 2025": 714000000
                          },
                          "sort_order": 11,
                          "depth": 3,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:IncreaseDecreaseInAccountsPayable": {
                          "label": "Increase (Decrease) in Accounts Payable",
                          "values": {
                            "Q1 2026": 941000000,
                            "Q1 2027": 2210000000,
                            "Q3 2026": -223000000,
                            "Q2 2026": 1314000000,
                            "Q1 2025": -22000000,
                            "Q4 2026": 1064000000,
                            "Q3 2025": 1689000000,
                            "Q2 2025": 823000000
                          },
                          "sort_order": 12,
                          "depth": 3,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:IncreaseDecreaseInAccruedLiabilitiesAndOtherOperatingLiabilities": {
                          "label": "Increase (Decrease) in Accrued Liabilities and Other Operating Liabilities",
                          "values": {
                            "Q1 2026": 7128000000,
                            "Q1 2027": 7763000000,
                            "Q3 2026": 1129000000,
                            "Q2 2026": -4053000000,
                            "Q1 2025": 4202000000,
                            "Q4 2026": 1053000000,
                            "Q3 2025": 604000000,
                            "Q2 2025": -888000000
                          },
                          "sort_order": 13,
                          "depth": 3,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:IncreaseDecreaseInOtherNoncurrentLiabilities": {
                          "label": "Increase (Decrease) in Other Noncurrent Liabilities",
                          "values": {
                            "Q1 2026": 350000000,
                            "Q1 2027": 1217000000,
                            "Q3 2026": 332000000,
                            "Q2 2026": 629000000,
                            "Q1 2025": 323000000,
                            "Q4 2026": 533000000,
                            "Q3 2025": 265000000,
                            "Q2 2025": 261000000
                          },
                          "sort_order": 14,
                          "depth": 3,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInOperatingActivities"
                        },
                        "us-gaap:NetCashProvidedByUsedInOperatingActivities": {
                          "label": "Cash Provided by (Used in) Operating Activity, Including Discontinued Operation",
                          "values": {
                            "Q1 2026": 27414000000,
                            "Q1 2027": 50344000000,
                            "Q3 2026": 23751000000,
                            "Q2 2026": 15365000000,
                            "Q1 2025": 15345000000,
                            "Q4 2026": 36188000000,
                            "Q3 2025": 17627000000,
                            "Q2 2025": 14488000000
                          },
                          "sort_order": 15,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalentsPeriodIncre…"
                        },
                        "us-gaap:NetCashProvidedByUsedInInvestingActivitiesAbstract": {
                          "label": "Cash Provided by (Used in) Investing Activity, Including Discontinued Operation",
                          "values": {},
                          "sort_order": 16,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:ProceedsFromMaturitiesPrepaymentsAndCallsOfAvailableForSaleSecurities": {
                          "label": "Proceeds from Maturities, Prepayments and Calls of Debt Securities, Available-fo…",
                          "values": {
                            "Q1 2026": 3122000000,
                            "Q1 2027": 1946000000,
                            "Q3 2026": 2728000000,
                            "Q2 2026": 3130000000,
                            "Q1 2025": 4004000000,
                            "Q4 2026": 2246000000,
                            "Q3 2025": 1387000000,
                            "Q2 2025": 4094000000
                          },
                          "sort_order": 17,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "nvda:ProceedsFromSaleOfNonMarketableSecurities": {
                          "label": "Proceeds From Sale Of Non Marketable Securities",
                          "values": {
                            "Q1 2026": 0,
                            "Q1 2027": 26000000
                          },
                          "sort_order": 18,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:ProceedsFromSaleOfAvailableForSaleSecuritiesDebt": {
                          "label": "Proceeds from Sale of Debt Securities, Available-for-Sale",
                          "values": {
                            "Q1 2026": 467000000,
                            "Q1 2027": 25000000,
                            "Q3 2026": 0,
                            "Q2 2026": 20000000,
                            "Q1 2025": 149000000,
                            "Q4 2026": 14670000000,
                            "Q3 2025": 154000000,
                            "Q2 2025": 15000000
                          },
                          "sort_order": 19,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:ProceedsFromSaleOfEquitySecuritiesFvNi": {
                          "label": "Proceeds from Sale of Equity Securities, FV-NI",
                          "values": {
                            "Q3 2026": 2000000,
                            "Q2 2026": 70000000,
                            "Q1 2025": 55000000,
                            "Q1 2026": 0,
                            "Q4 2026": 12000000,
                            "Q3 2025": 66000000
                          },
                          "sort_order": 20,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:PaymentsToAcquireAvailableForSaleSecuritiesDebt": {
                          "label": "Payments to Acquire Debt Securities, Available-for-Sale",
                          "values": {
                            "Q3 2026": -5718000000,
                            "Q2 2026": -7812000000,
                            "Q1 2025": -9303000000,
                            "Q1 2026": -6546000000,
                            "Q4 2026": -20540000000,
                            "Q3 2025": -4518000000,
                            "Q2 2025": -5744000000
                          },
                          "sort_order": 21,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "nvda:PaymentsToAcquireNonMarketableSecurities": {
                          "label": "Payments To Acquire Non Marketable Securities",
                          "values": {
                            "Q1 2026": -649000000,
                            "Q1 2027": -18582000000
                          },
                          "sort_order": 22,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "nvda:PaymentsToAcquireMarketableDebtAndEquitySecurities": {
                          "label": "Payments To Acquire Marketable Debt And Equity Securities",
                          "values": {
                            "Q1 2026": -6546000000,
                            "Q1 2027": -8000000000
                          },
                          "sort_order": 23,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:PaymentsToAcquireProductiveAssets": {
                          "label": "Payments to Acquire Productive Assets",
                          "values": {
                            "Q1 2026": -1227000000,
                            "Q1 2027": -1757000000,
                            "Q3 2026": -1636000000,
                            "Q2 2026": -1895000000,
                            "Q1 2025": -369000000,
                            "Q4 2026": -1284000000,
                            "Q3 2025": -813000000,
                            "Q2 2025": -977000000
                          },
                          "sort_order": 24,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:PaymentsToAcquireEquitySecuritiesFvNi": {
                          "label": "Payments to Acquire Equity Securities, FV-NI",
                          "values": {
                            "Q3 2026": -3707000000,
                            "Q2 2026": -346000000,
                            "Q1 2025": -190000000,
                            "Q1 2026": -649000000,
                            "Q4 2026": -12800000000,
                            "Q3 2025": -474000000
                          },
                          "sort_order": 25,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:PaymentsToAcquireBusinessesNetOfCashAcquired": {
                          "label": "Payments to Acquire Businesses, Net of Cash Acquired",
                          "values": {
                            "Q1 2026": -383000000,
                            "Q1 2027": -87000000,
                            "Q3 2026": -693000000,
                            "Q2 2026": -294000000,
                            "Q1 2025": -39000000,
                            "Q4 2026": -165000000,
                            "Q3 2025": -148000000,
                            "Q2 2025": -278000000
                          },
                          "sort_order": 27,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:PaymentsForProceedsFromOtherInvestingActivities": {
                          "label": "Payment for (Proceeds from) Other Investing Activity",
                          "values": {
                            "Q3 2025": 0,
                            "Q2 2025": 135000000,
                            "Q1 2025": -135000000
                          },
                          "sort_order": 28,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInInvestingActivities"
                        },
                        "us-gaap:NetCashProvidedByUsedInInvestingActivities": {
                          "label": "Cash Provided by (Used in) Investing Activity, Including Discontinued Operation",
                          "values": {
                            "Q1 2026": -5216000000,
                            "Q1 2027": -26429000000,
                            "Q3 2026": -9024000000,
                            "Q2 2026": -7127000000,
                            "Q1 2025": -5693000000,
                            "Q4 2026": -30861000000,
                            "Q3 2025": -4346000000,
                            "Q2 2025": -3184000000
                          },
                          "sort_order": 29,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalentsPeriodIncre…"
                        },
                        "us-gaap:NetCashProvidedByUsedInFinancingActivitiesAbstract": {
                          "label": "Cash Provided by (Used in) Financing Activity, Including Discontinued Operation",
                          "values": {},
                          "sort_order": 30,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:ProceedsFromStockPlans": {
                          "label": "Proceeds from Stock Plans",
                          "values": {
                            "Q1 2026": 370000000,
                            "Q1 2027": 515000000,
                            "Q3 2026": 273000000,
                            "Q2 2026": 0,
                            "Q1 2025": 285000000,
                            "Q4 2026": 1000000,
                            "Q3 2025": 204000000,
                            "Q2 2025": 0
                          },
                          "sort_order": 31,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInFinancingActivities"
                        },
                        "us-gaap:PaymentsForRepurchaseOfCommonStock": {
                          "label": "Payments for Repurchase of Common Stock",
                          "values": {
                            "Q1 2026": -14095000000,
                            "Q1 2027": -19312000000,
                            "Q3 2026": -12456000000,
                            "Q2 2026": -9720000000,
                            "Q1 2025": -7740000000,
                            "Q4 2026": -3815000000,
                            "Q3 2025": -10997000000,
                            "Q2 2025": -7158000000
                          },
                          "sort_order": 32,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInFinancingActivities"
                        },
                        "us-gaap:PaymentsRelatedToTaxWithholdingForShareBasedCompensation": {
                          "label": "Payment, Tax Withholding, Share-Based Payment Arrangement",
                          "values": {
                            "Q1 2026": -1532000000,
                            "Q1 2027": -2129000000,
                            "Q3 2026": -2429000000,
                            "Q2 2026": -1848000000,
                            "Q1 2025": -1752000000,
                            "Q4 2026": -2139000000,
                            "Q3 2025": -1679000000,
                            "Q2 2025": -1637000000
                          },
                          "sort_order": 33,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInFinancingActivities"
                        },
                        "us-gaap:PaymentsOfDividends": {
                          "label": "Payments of Dividends",
                          "values": {
                            "Q1 2026": -244000000,
                            "Q1 2027": -243000000,
                            "Q3 2026": -244000000,
                            "Q2 2025": -246000000,
                            "Q2 2026": -244000000,
                            "Q1 2025": -98000000,
                            "Q4 2026": -242000000,
                            "Q3 2025": -245000000
                          },
                          "sort_order": 34,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInFinancingActivities"
                        },
                        "nvda:PaymentsForFinancedPropertyPlantAndEquipmentAndIntangibleAssetsFinancingActivities": {
                          "label": "Payments For Financed Property Plant And Equipment And Intangible Assets Financi…",
                          "values": {
                            "Q1 2026": -52000000,
                            "Q1 2027": -33000000,
                            "Q3 2026": -24000000,
                            "Q2 2026": -21000000,
                            "Q1 2025": -40000000,
                            "Q4 2026": -4000000,
                            "Q3 2025": -28000000,
                            "Q2 2025": -29000000
                          },
                          "sort_order": 35,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInFinancingActivities"
                        },
                        "us-gaap:RepaymentsOfDebt": {
                          "label": "Repayments of Debt",
                          "values": {
                            "Q3 2026": 0,
                            "Q4 2026": 0,
                            "Q3 2025": 0
                          },
                          "sort_order": 36,
                          "depth": 1,
                          "is_header": false,
                          "negated": true,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInFinancingActivities"
                        },
                        "us-gaap:ProceedsFromPaymentsForOtherFinancingActivities": {
                          "label": "Proceeds from (Payment for) Other Financing Activity",
                          "values": {
                            "Q1 2026": 0,
                            "Q1 2027": -81000000
                          },
                          "sort_order": 37,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:NetCashProvidedByUsedInFinancingActivities"
                        },
                        "us-gaap:NetCashProvidedByUsedInFinancingActivities": {
                          "label": "Cash Provided by (Used in) Financing Activity, Including Discontinued Operation",
                          "values": {
                            "Q1 2026": -15553000000,
                            "Q1 2027": -21283000000,
                            "Q3 2026": -14880000000,
                            "Q2 2026": -11833000000,
                            "Q1 2025": -9345000000,
                            "Q4 2026": -6208000000,
                            "Q3 2025": -12745000000,
                            "Q2 2025": -10320000000
                          },
                          "sort_order": 38,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalentsPeriodIncre…"
                        },
                        "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalentsPeriodIncreaseDecreaseIncludingExchangeRateEffect": {
                          "label": "Cash, Cash Equivalent, Restricted Cash, and Restricted Cash Equivalent, Period I…",
                          "values": {
                            "Q1 2026": 6645000000,
                            "Q1 2027": 2632000000,
                            "Q3 2026": -153000000,
                            "Q2 2026": -3595000000,
                            "Q1 2025": 307000000,
                            "Q4 2026": -881000000,
                            "Q3 2025": 536000000,
                            "Q2 2025": 984000000
                          },
                          "sort_order": 39,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalents": {
                          "label": "Cash, Cash Equivalent, Restricted Cash, and Restricted Cash Equivalent, Continui…",
                          "values": {
                            "Q1 2026": 15234000000,
                            "Q4 2026": 10605000000,
                            "Q1 2027": 13237000000,
                            "Q3 2025": 9107000000,
                            "Q3 2026": 11486000000,
                            "Q2 2025": 8571000000,
                            "Q2 2026": 11639000000,
                            "Q1 2025": 7587000000
                          },
                          "sort_order": 40,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:CashAndCashEquivalentsAtCarryingValue": {
                          "label": "Cash and Cash Equivalents, at Carrying Value",
                          "values": {
                            "Q1 2027": 13237000000,
                            "Q4 2026": 10605000000,
                            "Q3 2026": 11486000000,
                            "Q2 2026": 11639000000,
                            "Q1 2026": 15234000000,
                            "Q3 2025": 9107000000,
                            "Q2 2025": 8563000000,
                            "Q1 2025": 7587000000
                          },
                          "sort_order": 41,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalents"
                        },
                        "us-gaap:RestrictedCashCurrent": {
                          "label": "Restricted Cash, Current",
                          "values": {
                            "Q2 2025": 8000000
                          },
                          "sort_order": 42,
                          "depth": 0,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalents"
                        },
                        "us-gaap:SupplementalCashFlowInformationAbstract": {
                          "label": "Supplemental Cash Flow Information",
                          "values": {},
                          "sort_order": 44,
                          "depth": 0,
                          "is_header": true,
                          "negated": false,
                          "no_scale": false
                        },
                        "us-gaap:IncomeTaxesPaidNet": {
                          "label": "Income Taxes Paid, Net",
                          "values": {
                            "Q3 2026": 4858000000,
                            "Q4 2026": 6979000000,
                            "Q3 2025": 3540000000
                          },
                          "sort_order": 45,
                          "depth": 1,
                          "is_header": false,
                          "negated": false,
                          "no_scale": false,
                          "parent_key": "us-gaap:SupplementalCashFlowInformationAbstract"
                        }
                      }
                    },
                    "segments_kpis": {
                      "data": {
                        "seghdr::SEGMENT|DEPRECIATION_AMORT": {
                          "label": "Depreciation & Amortization by Operating Segment",
                          "values": {},
                          "sort_order": 0,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::SEGMENT::DEPRECIATION_AMORT::nvda:ComputeAndNetworkingSegmentMember": {
                          "label": "Compute And Networking Segment",
                          "values": {
                            "Q1 2027": 526000000,
                            "Q4 2026": 482000000,
                            "Q3 2026": 439000000,
                            "Q2 2026": 383000000,
                            "Q1 2026": 296000000,
                            "Q3 2025": 187000000,
                            "Q2 2025": 161000000,
                            "Q1 2025": 146000000
                          },
                          "sort_order": 1,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|DEPRECIATION_AMORT",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 1600000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::SEGMENT::DEPRECIATION_AMORT::nvda:GraphicsSegmentMember": {
                          "label": "Graphics Segment",
                          "values": {
                            "Q1 2027": 194000000,
                            "Q4 2026": 158000000,
                            "Q3 2026": 175000000,
                            "Q2 2026": 148000000,
                            "Q1 2026": 109000000,
                            "Q3 2025": 97000000,
                            "Q2 2025": 86000000,
                            "Q1 2025": 86000000
                          },
                          "sort_order": 2,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|DEPRECIATION_AMORT",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 590000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seghdr::SEGMENT|GOODWILL": {
                          "label": "Goodwill by Operating Segment",
                          "values": {},
                          "sort_order": 3,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::SEGMENT::GOODWILL::nvda:ComputeAndNetworkingSegmentMember": {
                          "label": "Compute And Networking Segment",
                          "values": {
                            "Q4 2026": 20500000000
                          },
                          "sort_order": 4,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|GOODWILL",
                          "no_scale": false
                        },
                        "seg::SEGMENT::GOODWILL::nvda:GraphicsSegmentMember": {
                          "label": "Graphics Segment",
                          "values": {
                            "Q4 2026": 370000000
                          },
                          "sort_order": 5,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|GOODWILL",
                          "no_scale": false
                        },
                        "seghdr::GEOGRAPHY|LONG_LIVED_ASSETS": {
                          "label": "Long-lived Assets by Geography",
                          "values": {},
                          "sort_order": 6,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::GEOGRAPHY::LONG_LIVED_ASSETS::country:US": {
                          "label": "United States",
                          "values": {
                            "Q4 2026": 5125000000
                          },
                          "sort_order": 7,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|LONG_LIVED_ASSETS",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::LONG_LIVED_ASSETS::country:TW": {
                          "label": "Taiwan",
                          "values": {
                            "Q4 2026": 3219000000
                          },
                          "sort_order": 8,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|LONG_LIVED_ASSETS",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::LONG_LIVED_ASSETS::country:IL": {
                          "label": "Israel",
                          "values": {
                            "Q4 2026": 1471000000
                          },
                          "sort_order": 9,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|LONG_LIVED_ASSETS",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::LONG_LIVED_ASSETS::nvda:OtherCountriesMember": {
                          "label": "Other Countries",
                          "values": {
                            "Q4 2026": 568000000
                          },
                          "sort_order": 10,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|LONG_LIVED_ASSETS",
                          "no_scale": false
                        },
                        "seghdr::SEGMENT|OPERATING_INCOME": {
                          "label": "Operating Income by Operating Segment",
                          "values": {},
                          "sort_order": 11,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::SEGMENT::OPERATING_INCOME::nvda:ComputeAndNetworkingSegmentMember": {
                          "label": "Compute And Networking Segment",
                          "values": {
                            "Q1 2027": 53335000000,
                            "Q4 2026": 44003000000,
                            "Q3 2026": 35721000000,
                            "Q2 2026": 28363000000,
                            "Q1 2026": 22054000000,
                            "Q3 2025": 22081000000,
                            "Q2 2025": 18848000000,
                            "Q1 2025": 17047000000
                          },
                          "sort_order": 12,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|OPERATING_INCOME",
                          "no_scale": false,
                          "merged_from": [
                            "Compute And Networking"
                          ],
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 130141000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::SEGMENT::OPERATING_INCOME::nvda:GraphicsSegmentMember": {
                          "label": "Graphics Segment",
                          "values": {
                            "Q1 2027": 2941000000,
                            "Q4 2026": 2728000000,
                            "Q3 2026": 2546000000,
                            "Q2 2026": 2242000000,
                            "Q1 2026": 1640000000,
                            "Q3 2025": 1502000000,
                            "Q2 2025": 1369000000,
                            "Q1 2025": 1241000000
                          },
                          "sort_order": 13,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|OPERATING_INCOME",
                          "no_scale": false,
                          "merged_from": [
                            "Graphics"
                          ],
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 9156000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seghdr::SEGMENT|OTHER_SEGMENT_ITEMS": {
                          "label": "Other Segment Items by Operating Segment",
                          "values": {},
                          "sort_order": 14,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::SEGMENT::OTHER_SEGMENT_ITEMS::nvda:ComputeAndNetworkingSegmentMember": {
                          "label": "Compute And Networking Segment",
                          "values": {
                            "Q1 2027": 21215000000,
                            "Q4 2026": 17648000000,
                            "Q3 2026": 15187000000,
                            "Q2 2026": 12968000000,
                            "Q1 2026": 17535000000,
                            "Q3 2025": 8955000000,
                            "Q2 2025": 7598000000,
                            "Q1 2025": 5628000000
                          },
                          "sort_order": 15,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|OTHER_SEGMENT_ITEMS",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 63338000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::SEGMENT::OTHER_SEGMENT_ITEMS::nvda:GraphicsSegmentMember": {
                          "label": "Graphics Segment",
                          "values": {
                            "Q1 2027": 4124000000,
                            "Q4 2026": 3748000000,
                            "Q3 2026": 3552000000,
                            "Q2 2026": 3170000000,
                            "Q1 2026": 2833000000,
                            "Q3 2025": 2544000000,
                            "Q2 2025": 2225000000,
                            "Q1 2025": 2128000000
                          },
                          "sort_order": 16,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|OTHER_SEGMENT_ITEMS",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 13303000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seghdr::GEOGRAPHY|REVENUE": {
                          "label": "Revenue by Geography",
                          "values": {},
                          "sort_order": 17,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::GEOGRAPHY::REVENUE::country:US": {
                          "label": "United States",
                          "values": {
                            "Q1 2027": 63769000000,
                            "Q3 2026": 39177000000,
                            "Q2 2026": 23470000000,
                            "Q1 2026": 25685000000,
                            "Q3 2025": 14800000000,
                            "Q2 2025": 13022000000,
                            "Q1 2025": 13496000000
                          },
                          "sort_order": 18,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|REVENUE",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::REVENUE::country:TW": {
                          "label": "Taiwan",
                          "values": {
                            "Q1 2027": 12006000000,
                            "Q3 2026": 13751000000,
                            "Q2 2026": 8529000000,
                            "Q1 2026": 7648000000,
                            "Q3 2025": 5153000000,
                            "Q2 2025": 5740000000,
                            "Q1 2025": 4373000000
                          },
                          "sort_order": 19,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|REVENUE",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::REVENUE::nvda:ChinaIncludingHongKongMember": {
                          "label": "China Including Hong Kong",
                          "values": {
                            "Q1 2027": 4550000000,
                            "Q3 2026": 2973000000,
                            "Q2 2026": 2769000000,
                            "Q1 2026": 9659000000,
                            "Q3 2025": 5416000000,
                            "Q2 2025": 3667000000,
                            "Q1 2025": 2491000000
                          },
                          "sort_order": 20,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|REVENUE",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::REVENUE::nvda:OtherCountriesMember": {
                          "label": "Other Countries",
                          "values": {
                            "Q1 2027": 1290000000,
                            "Q1 2026": 1070000000
                          },
                          "sort_order": 21,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|REVENUE",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::REVENUE::nvda:AllOtherCountriesNotSeparatelyDisclosedMember": {
                          "label": "All Other Countries Not Separately Disclosed",
                          "values": {
                            "Q3 2026": 1105000000,
                            "Q2 2026": 1819000000,
                            "Q3 2025": 2016000000,
                            "Q2 2025": 1989000000,
                            "Q1 2025": 1647000000
                          },
                          "sort_order": 22,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|REVENUE",
                          "no_scale": false
                        },
                        "seg::GEOGRAPHY::REVENUE::country:SG": {
                          "label": "Singapore",
                          "values": {
                            "Q2 2026": 10156000000,
                            "Q3 2025": 7697000000,
                            "Q2 2025": 5622000000,
                            "Q1 2025": 4037000000
                          },
                          "sort_order": 23,
                          "depth": 1,
                          "parent_key": "seghdr::GEOGRAPHY|REVENUE",
                          "no_scale": false
                        },
                        "seghdr::SEGMENT|REVENUE": {
                          "label": "Revenue by Operating Segment",
                          "values": {},
                          "sort_order": 24,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::SEGMENT::REVENUE::nvda:ComputeAndNetworkingSegmentMember": {
                          "label": "Compute And Networking Segment",
                          "values": {
                            "Q1 2027": 74550000000,
                            "Q4 2026": 61651000000,
                            "Q3 2026": 50908000000,
                            "Q2 2026": 41331000000,
                            "Q1 2026": 39589000000,
                            "Q3 2025": 31036000000,
                            "Q2 2025": 26446000000,
                            "Q1 2025": 22675000000
                          },
                          "sort_order": 25,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|REVENUE",
                          "no_scale": false,
                          "merged_from": [
                            "Compute And Networking"
                          ],
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 193479000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::SEGMENT::REVENUE::nvda:GraphicsSegmentMember": {
                          "label": "Graphics Segment",
                          "values": {
                            "Q1 2027": 7065000000,
                            "Q4 2026": 6476000000,
                            "Q3 2026": 6098000000,
                            "Q2 2026": 5412000000,
                            "Q1 2026": 4473000000,
                            "Q3 2025": 4046000000,
                            "Q2 2025": 3594000000,
                            "Q1 2025": 3369000000
                          },
                          "sort_order": 26,
                          "depth": 1,
                          "parent_key": "seghdr::SEGMENT|REVENUE",
                          "no_scale": false,
                          "merged_from": [
                            "Graphics"
                          ],
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": 22459000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seghdr::PRODUCT|REVENUE": {
                          "label": "Revenue by Product",
                          "values": {},
                          "sort_order": 27,
                          "depth": 0,
                          "is_header": true
                        },
                        "seg::PRODUCT::REVENUE::nvda:HyperscaleMember": {
                          "label": "Hyperscale",
                          "values": {
                            "Q1 2027": 37869000000,
                            "Q1 2026": 17599000000
                          },
                          "sort_order": 28,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false
                        },
                        "seg::PRODUCT::REVENUE::nvda:AICloudsIndustrialEnterpriseMember": {
                          "label": "AI Clouds Industrial Enterprise",
                          "values": {
                            "Q1 2027": 37377000000,
                            "Q1 2026": 21513000000
                          },
                          "sort_order": 29,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false
                        },
                        "seg::PRODUCT::REVENUE::nvda:EdgeComputingMember": {
                          "label": "Edge Computing",
                          "values": {
                            "Q1 2027": 6369000000,
                            "Q1 2026": 4950000000
                          },
                          "sort_order": 30,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false
                        },
                        "seg::PRODUCT::REVENUE::nvda:ComputeMember": {
                          "label": "Compute",
                          "values": {
                            "Q4 2026": 51334000000,
                            "Q3 2026": 43028000000,
                            "Q2 2026": 33844000000,
                            "Q3 2025": 27644000000,
                            "Q2 2025": 22604000000,
                            "Q1 2025": 19392000000
                          },
                          "sort_order": 31,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": null,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::PRODUCT::REVENUE::nvda:NetworkingMember": {
                          "label": "Networking",
                          "values": {
                            "Q4 2026": 10980000000,
                            "Q3 2026": 8187000000,
                            "Q2 2026": 7252000000,
                            "Q3 2025": 3127000000,
                            "Q2 2025": 3668000000,
                            "Q1 2025": 3171000000
                          },
                          "sort_order": 32,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": null,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::PRODUCT::REVENUE::nvda:GamingMember": {
                          "label": "Gaming",
                          "values": {
                            "Q4 2026": 3727000000,
                            "Q3 2026": 4265000000,
                            "Q2 2026": 4287000000,
                            "Q3 2025": 3279000000,
                            "Q2 2025": 2880000000,
                            "Q1 2025": 2647000000
                          },
                          "sort_order": 33,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": null,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::PRODUCT::REVENUE::nvda:ProfessionalVisualizationMember": {
                          "label": "Professional Visualization",
                          "values": {
                            "Q4 2026": 1321000000,
                            "Q3 2026": 760000000,
                            "Q2 2026": 601000000,
                            "Q3 2025": 486000000,
                            "Q2 2025": 454000000,
                            "Q1 2025": 427000000
                          },
                          "sort_order": 34,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": null,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::PRODUCT::REVENUE::nvda:AutomotiveMember": {
                          "label": "Automotive",
                          "values": {
                            "Q4 2026": 604000000,
                            "Q3 2026": 592000000,
                            "Q2 2026": 586000000,
                            "Q3 2025": 449000000,
                            "Q2 2025": 346000000,
                            "Q1 2025": 329000000
                          },
                          "sort_order": 35,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": null,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        },
                        "seg::PRODUCT::REVENUE::nvda:OEMAndOtherMember": {
                          "label": "OEM And Other",
                          "values": {
                            "Q4 2026": 161000000,
                            "Q3 2026": 174000000,
                            "Q2 2026": 173000000,
                            "Q3 2025": 97000000,
                            "Q2 2025": 88000000,
                            "Q1 2025": 78000000
                          },
                          "sort_order": 36,
                          "depth": 1,
                          "parent_key": "seghdr::PRODUCT|REVENUE",
                          "no_scale": false,
                          "calc": {
                            "Q4 2026": {
                              "formula": "FY2026 annual − (Q1 + Q2 + Q3)",
                              "inputs": [
                                {
                                  "label": "FY2026 annual (10-K)",
                                  "value": null,
                                  "format": "currency"
                                }
                              ],
                              "note": "No 10-Q covers Q4; the fourth quarter is the 10-K annual less the three filed qu…"
                            }
                          }
                        }
                      }
                    },
                    "ratios": {
                      "data": {
                        "Valuation": {
                          "label": "Valuation",
                          "values": {},
                          "sort_order": 0,
                          "is_header": true
                        },
                        "Market Cap": {
                          "label": "Market Cap",
                          "values": {
                            "Q1 2027": 5040134096800,
                            "Q3 2026": 4526117878500,
                            "Q2 2026": 4216050000000,
                            "Q1 2026": 2708644048800,
                            "Q4 2026": 4561131631392,
                            "Q3 2025": 3466314428570,
                            "Q2 2025": 2773361750940,
                            "Q1 2025": 2158281024600
                          },
                          "sort_order": 1,
                          "depth": 1,
                          "no_scale": false,
                          "value_format": "compact_currency",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 208.270004,
                                  "format": "price",
                                  "qualifier": "close on 2026-04-24"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 186.259995,
                                  "format": "price",
                                  "qualifier": "close on 2025-10-24"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 173.5,
                                  "format": "price",
                                  "qualifier": "close on 2025-07-25"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 111.010002,
                                  "format": "price",
                                  "qualifier": "close on 2025-04-25"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 187.669998,
                                  "format": "price",
                                  "qualifier": "close on 2026-01-23"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 141.539993,
                                  "format": "price",
                                  "qualifier": "close on 2024-10-25"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 113.059998,
                                  "format": "price",
                                  "qualifier": "close on 2024-07-26"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Price × Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 87.735001,
                                  "format": "price",
                                  "qualifier": "close on 2024-04-26"
                                }
                              ],
                              "note": "Prices are split-adjusted to the present, so the as-filed share count is scaled …",
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "Enterprise Value": {
                          "label": "Enterprise Value",
                          "values": {
                            "Q1 2027": 4998269096800,
                            "Q3 2026": 4473976878500,
                            "Q2 2026": 4167725000000,
                            "Q1 2026": 2663417048800,
                            "Q4 2026": 4558994631392,
                            "Q3 2025": 3436289428570,
                            "Q2 2025": 2747022750940,
                            "Q1 2025": 2136553024600
                          },
                          "sort_order": 2,
                          "depth": 1,
                          "no_scale": false,
                          "calc": {
                            "Q1 2027": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 5040134096800,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4526117878500,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4216050000000,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2708644048800,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4561131631392,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 3466314428570,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2773361750940,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Market Cap + Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2158281024600,
                                  "format": "currency",
                                  "qualifier": "price × split-adjusted shares"
                                }
                              ],
                              "note": "A missing debt or cash figure is treated as zero.",
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "P/E": {
                          "label": "P/E",
                          "values": {
                            "Q1 2027": 21.7856,
                            "Q3 2026": 35.8192,
                            "Q2 2026": 40.162,
                            "Q1 2026": 36.5164,
                            "Q4 2026": 26.6577,
                            "Q3 2025": 45.3654,
                            "Q2 2025": 42.1866,
                            "Q1 2025": 36.6785
                          },
                          "sort_order": 3,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 208.270004,
                                  "format": "price",
                                  "qualifier": "close on 2026-04-24"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 186.259995,
                                  "format": "price",
                                  "qualifier": "close on 2025-10-24"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 173.5,
                                  "format": "price",
                                  "qualifier": "close on 2025-07-25"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 111.010002,
                                  "format": "price",
                                  "qualifier": "close on 2025-04-25"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 187.669998,
                                  "format": "price",
                                  "qualifier": "close on 2026-01-23"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 141.539993,
                                  "format": "price",
                                  "qualifier": "close on 2024-10-25"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 113.059998,
                                  "format": "price",
                                  "qualifier": "close on 2024-07-26"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Price ÷ (Diluted EPS ×4)",
                              "inputs": [
                                {
                                  "label": "Price",
                                  "value": 87.735001,
                                  "format": "price",
                                  "qualifier": "close on 2024-04-26"
                                }
                              ],
                              "note": "Quarterly EPS is annualized ×4 so the multiple is comparable with annual columns…",
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "P/S": {
                          "label": "P/S",
                          "values": {
                            "Q1 2027": 15.4387,
                            "Q3 2026": 19.8493,
                            "Q2 2026": 22.5491,
                            "Q1 2026": 15.3684,
                            "Q4 2026": 16.7376,
                            "Q3 2025": 24.7015,
                            "Q2 2025": 23.0806,
                            "Q1 2025": 20.7176
                          },
                          "sort_order": 4,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 5040134096800,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4526117878500,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4216050000000,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2708644048800,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4561131631392,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 3466314428570,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2773361750940,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Market Cap ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2158281024600,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "P/B": {
                          "label": "P/B",
                          "values": {
                            "Q1 2027": 25.7842,
                            "Q3 2026": 38.0676,
                            "Q2 2026": 42.1053,
                            "Q1 2026": 32.3061,
                            "Q4 2026": 28.9977,
                            "Q3 2025": 52.6004,
                            "Q2 2025": 47.6875,
                            "Q1 2025": 43.9193
                          },
                          "sort_order": 5,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 5040134096800,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4526117878500,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4216050000000,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2708644048800,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4561131631392,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 3466314428570,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2773361750940,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Market Cap ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2158281024600,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "P/FCF": {
                          "label": "P/FCF",
                          "values": {
                            "Q1 2027": 25.9336,
                            "Q3 2026": 51.1657,
                            "Q2 2026": 78.2489,
                            "Q1 2026": 25.8587,
                            "Q4 2026": 32.6691,
                            "Q3 2025": 51.5391,
                            "Q2 2025": 51.3167,
                            "Q1 2025": 36.029
                          },
                          "sort_order": 6,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 5040134096800,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4526117878500,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4216050000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2708644048800,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 4561131631392,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 3466314428570,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2773361750940,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Market Cap ÷ Free Cash Flow",
                              "inputs": [
                                {
                                  "label": "Market Cap",
                                  "value": 2158281024600,
                                  "format": "currency"
                                }
                              ],
                              "note": "FCF = operating cash flow − capex. Shown only when FCF is positive.",
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "EV/Sales": {
                          "label": "EV/Sales",
                          "values": {
                            "Q1 2027": 15.3105,
                            "Q3 2026": 19.6206,
                            "Q2 2026": 22.2906,
                            "Q1 2026": 15.1118,
                            "Q4 2026": 16.7298,
                            "Q3 2025": 24.4876,
                            "Q2 2025": 22.8614,
                            "Q1 2025": 20.5091
                          },
                          "sort_order": 7,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4998269096800,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4473976878500,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4167725000000,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 2663417048800,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4558994631392,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 3436289428570,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 2747022750940,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Enterprise Value ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 2136553024600,
                                  "format": "currency"
                                }
                              ],
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "EV/EBITDA": {
                          "label": "EV/EBITDA",
                          "values": {
                            "Q1 2027": 22.914,
                            "Q3 2026": 30.4261,
                            "Q2 2026": 35.7941,
                            "Q1 2026": 29.9274,
                            "Q4 2026": 25.2654,
                            "Q3 2025": 38.4424,
                            "Q2 2025": 36.0029,
                            "Q1 2025": 30.8412
                          },
                          "sort_order": 8,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4998269096800,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2026-04-24"
                            },
                            "Q3 2026": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4473976878500,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2025-10-24"
                            },
                            "Q2 2026": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4167725000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2025-07-25"
                            },
                            "Q1 2026": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 2663417048800,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2025-04-25"
                            },
                            "Q4 2026": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 4558994631392,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2026-01-23"
                            },
                            "Q3 2025": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 3436289428570,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2024-10-25"
                            },
                            "Q2 2025": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 2747022750940,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2024-07-26"
                            },
                            "Q1 2025": {
                              "formula": "Enterprise Value ÷ EBITDA",
                              "inputs": [
                                {
                                  "label": "Enterprise Value",
                                  "value": 2136553024600,
                                  "format": "currency"
                                }
                              ],
                              "note": "EBITDA = operating income + depreciation & amortization. Shown only when EBITDA …",
                              "asOf": "price: close on 2024-04-26"
                            }
                          }
                        },
                        "Profitability": {
                          "label": "Profitability",
                          "values": {},
                          "sort_order": 9,
                          "is_header": true
                        },
                        "Gross Margin %": {
                          "label": "Gross Margin %",
                          "values": {
                            "Q1 2027": 74.9335,
                            "Q3 2026": 73.4116,
                            "Q2 2026": 72.4237,
                            "Q1 2026": 60.5238,
                            "Q4 2026": 74.9967,
                            "Q3 2025": 74.5568,
                            "Q2 2025": 75.1465,
                            "Q1 2025": 78.352
                          },
                          "sort_order": 10,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 61156976025,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 41849016696,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 33853010091,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 26667996756.000004,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 51093001809,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 26156016576,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 22574008600,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Gross Profit ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Gross Profit",
                                  "value": 20405994880,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "EBITDA Margin %": {
                          "label": "EBITDA Margin %",
                          "values": {
                            "Q1 2027": 66.8174,
                            "Q3 2026": 64.4862,
                            "Q2 2026": 62.2746,
                            "Q1 2026": 50.4948,
                            "Q4 2026": 66.216,
                            "Q3 2025": 63.6993,
                            "Q2 2025": 63.4987,
                            "Q1 2025": 66.499
                          },
                          "sort_order": 11,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 54533000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 36761000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 29109000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 22249000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 45111000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 22347000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 19075000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "EBITDA ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "EBITDA",
                                  "value": 17319000000,
                                  "format": "currency",
                                  "qualifier": "operating income + D&A"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Operating Margin %": {
                          "label": "Operating Margin %",
                          "values": {
                            "Q1 2027": 65.5958,
                            "Q3 2026": 63.1688,
                            "Q2 2026": 60.8433,
                            "Q1 2026": 49.1081,
                            "Q4 2026": 65.0241,
                            "Q3 2025": 62.3368,
                            "Q2 2025": 62.0573,
                            "Q1 2025": 64.9247
                          },
                          "sort_order": 12,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 53536012170,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 36010006128,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 28439983719,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 21638011022,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 44298968607,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 21868996176,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 18642012920,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Operating Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 16908988868,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Pre-Tax Margin %": {
                          "label": "Pre-Tax Margin %",
                          "values": {
                            "Q1 2027": 85.6497,
                            "Q3 2026": 66.5474,
                            "Q2 2026": 66.7608,
                            "Q1 2026": 49.7254,
                            "Q4 2026": 73.9765,
                            "Q3 2025": 63.611,
                            "Q2 2025": 63.9614,
                            "Q1 2025": 66.3454
                          },
                          "sort_order": 13,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 69903002655,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 37936010844,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 31206000744,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 21910005748,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 50397970155,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 22316011020,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 19214004560,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Pre-Tax Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Pre-Tax Income",
                                  "value": 17278995976,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Net Margin %": {
                          "label": "Net Margin %",
                          "values": {
                            "Q1 2027": 71.4587,
                            "Q3 2026": 55.9766,
                            "Q2 2026": 56.5261,
                            "Q1 2026": 42.6104,
                            "Q4 2026": 63.0587,
                            "Q3 2025": 55.0396,
                            "Q2 2025": 55.2563,
                            "Q1 2025": 57.1379
                          },
                          "sort_order": 14,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 58321018005,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q3 2026": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 31910020596,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q2 2026": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 26421994923,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q1 2026": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 18774994448,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q4 2026": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 42960000549,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q3 2025": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 19308992472,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q2 2025": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 16598992520,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q1 2025": {
                              "formula": "Net Income ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Net Income",
                                  "value": 14880994676,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            }
                          }
                        },
                        "FCF Margin %": {
                          "label": "FCF Margin %",
                          "values": {
                            "Q1 2027": 59.5319,
                            "Q3 2026": 38.7942,
                            "Q2 2026": 28.8171,
                            "Q1 2026": 59.4322,
                            "Q4 2026": 51.2337,
                            "Q3 2025": 47.9277,
                            "Q2 2025": 44.9767,
                            "Q1 2025": 57.5027
                          },
                          "sort_order": 15,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 48587000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 22115000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 13470000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 26187000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 34904000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 16814000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 13511000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Free Cash Flow ÷ Revenue",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 14976000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Returns": {
                          "label": "Returns",
                          "values": {},
                          "sort_order": 16,
                          "is_header": true
                        },
                        "ROA %": {
                          "label": "ROA %",
                          "values": {
                            "Q1 2027": 89.9065,
                            "Q3 2026": 79.2067,
                            "Q2 2026": 75.0945,
                            "Q1 2026": 59.9582,
                            "Q4 2026": 83.0936,
                            "Q3 2025": 80.4433,
                            "Q2 2025": 77.9049,
                            "Q1 2025": 77.2317
                          },
                          "sort_order": 17,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 233284072020,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q3 2026": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 127640082384,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q2 2026": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 105687979692,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q1 2026": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 75099977792,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q4 2026": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 171840002196,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q3 2025": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 77235969888,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q2 2025": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 66395970080,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q1 2025": {
                              "formula": "(Net Income ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 59523978704,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            }
                          }
                        },
                        "ROE %": {
                          "label": "ROE %",
                          "values": {
                            "Q1 2027": 119.3427,
                            "Q3 2026": 107.3534,
                            "Q2 2026": 105.5497,
                            "Q1 2026": 89.5722,
                            "Q4 2026": 109.2483,
                            "Q3 2025": 117.2036,
                            "Q2 2025": 114.1668,
                            "Q1 2025": 121.1265
                          },
                          "sort_order": 18,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 233283949398,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q3 2026": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 127639971998,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q2 2026": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 105687970106.99998,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q1 2026": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 75100019646,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q4 2026": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 171839928519,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q3 2025": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 77236000364,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q2 2025": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 66395985875.99999,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            },
                            "Q1 2025": {
                              "formula": "(Net Income ×4) ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Net Income (annualized)",
                                  "value": 59523984630,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Net income is parent-attributable (the figure that ties out to diluted EPS), not…"
                            }
                          }
                        },
                        "ROCE %": {
                          "label": "ROCE %",
                          "values": {
                            "Q1 2027": 99.3293,
                            "Q3 2026": 106.6386,
                            "Q2 2026": 97.6623,
                            "Q1 2026": 87.6813,
                            "Q4 2026": 101.4636,
                            "Q3 2025": 109.9857,
                            "Q2 2025": 104.6451,
                            "Q1 2025": 109.3567
                          },
                          "sort_order": 19,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "percent",
                          "calc": {
                            "Q1 2027": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 214144048680,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 144040024512,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 113759934876,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 86552044088,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 177195874428,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 87475984704,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 74568051680,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "(Operating Income ×4) ÷ (Total Assets − Current Liabilities)",
                              "inputs": [
                                {
                                  "label": "Operating Income (annualized)",
                                  "value": 67635955472,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Liquidity": {
                          "label": "Liquidity",
                          "values": {},
                          "sort_order": 20,
                          "is_header": true
                        },
                        "Current Ratio": {
                          "label": "Current Ratio",
                          "values": {
                            "Q1 2027": 3.4408,
                            "Q3 2026": 4.4676,
                            "Q2 2026": 4.214,
                            "Q1 2026": 3.3884,
                            "Q4 2026": 3.9053,
                            "Q3 2025": 4.1046,
                            "Q2 2025": 4.269,
                            "Q1 2025": 3.5295
                          },
                          "sort_order": 21,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Current Assets ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Quick Ratio": {
                          "label": "Quick Ratio",
                          "values": {
                            "Q1 2027": 2.8529,
                            "Q3 2026": 3.7088,
                            "Q2 2026": 3.5972,
                            "Q1 2026": 2.9614,
                            "Q4 2026": 3.2398,
                            "Q3 2025": 3.6401,
                            "Q2 2025": 3.7911,
                            "Q1 2025": 3.1443
                          },
                          "sort_order": 22,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "(Current Assets − Inventory) ÷ Current Liabilities",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Cash Ratio": {
                          "label": "Cash Ratio",
                          "values": {
                            "Q1 2027": 1.147,
                            "Q3 2026": 2.3244,
                            "Q2 2026": 2.3412,
                            "Q1 2026": 2.0229,
                            "Q4 2026": 0.3297,
                            "Q3 2025": 2.3355,
                            "Q2 2025": 2.4912,
                            "Q1 2025": 2.0652
                          },
                          "sort_order": 23,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 50335000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 60608000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 56791000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 53691000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 10605000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 38487000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 34800000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Cash & Investments ÷ Current Liabilities",
                              "inputs": [
                                {
                                  "label": "Cash & Investments",
                                  "value": 31438000000,
                                  "format": "currency",
                                  "qualifier": "cash & equivalents + short-term investments"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Leverage": {
                          "label": "Leverage",
                          "values": {},
                          "sort_order": 24,
                          "is_header": true
                        },
                        "Total Debt": {
                          "label": "Total Debt",
                          "values": {
                            "Q1 2027": 8470000000,
                            "Q3 2026": 8467000000,
                            "Q2 2026": 8466000000,
                            "Q1 2026": 8464000000,
                            "Q4 2026": 8468000000,
                            "Q3 2025": 8462000000,
                            "Q2 2025": 8461000000,
                            "Q1 2025": 9710000000
                          },
                          "sort_order": 25,
                          "depth": 1,
                          "no_scale": false,
                          "calc": {
                            "Q1 2027": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Long-Term Debt (incl. current portion) + Short-Term Debt",
                              "inputs": [],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Net Debt": {
                          "label": "Net Debt",
                          "values": {
                            "Q1 2027": -41865000000,
                            "Q3 2026": -52141000000,
                            "Q2 2026": -48325000000,
                            "Q1 2026": -45227000000,
                            "Q4 2026": -2137000000,
                            "Q3 2025": -30025000000,
                            "Q2 2025": -26339000000,
                            "Q1 2025": -21728000000
                          },
                          "sort_order": 26,
                          "depth": 1,
                          "no_scale": false,
                          "calc": {
                            "Q1 2027": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8470000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8467000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8466000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8464000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8468000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8462000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8461000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Total Debt − Cash & Investments",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 9710000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Debt/Equity": {
                          "label": "Debt/Equity",
                          "values": {
                            "Q1 2027": 0.0433,
                            "Q3 2026": 0.0712,
                            "Q2 2026": 0.0845,
                            "Q1 2026": 0.101,
                            "Q4 2026": 0.0538,
                            "Q3 2025": 0.1284,
                            "Q2 2025": 0.1455,
                            "Q1 2025": 0.1976
                          },
                          "sort_order": 27,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8470000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            },
                            "Q3 2026": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8467000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            },
                            "Q2 2026": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8466000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            },
                            "Q1 2026": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8464000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            },
                            "Q4 2026": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8468000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            },
                            "Q3 2025": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8462000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            },
                            "Q2 2025": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 8461000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            },
                            "Q1 2025": {
                              "formula": "Total Debt ÷ Shareholders' Equity",
                              "inputs": [
                                {
                                  "label": "Total Debt",
                                  "value": 9710000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Serves no value when equity is zero or negative. Computed at ingestion (compute_…"
                            }
                          }
                        },
                        "Net Debt/EBITDA": {
                          "label": "Net Debt/EBITDA",
                          "values": {
                            "Q1 2027": -0.1919,
                            "Q3 2026": -0.3546,
                            "Q2 2026": -0.415,
                            "Q1 2026": -0.5082,
                            "Q4 2026": -0.0118,
                            "Q3 2025": -0.3359,
                            "Q2 2025": -0.3452,
                            "Q1 2025": -0.3136
                          },
                          "sort_order": 28,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -41865000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -52141000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -48325000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -45227000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -2137000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -30025000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -26339000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Net Debt ÷ (EBITDA ×4)",
                              "inputs": [
                                {
                                  "label": "Net Debt",
                                  "value": -21728000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Interest Coverage (EBIT/Int)": {
                          "label": "Interest Coverage (EBIT/Int)",
                          "values": {
                            "Q1 2027": 524.8627,
                            "Q3 2026": 590.3279,
                            "Q2 2026": 458.7097,
                            "Q1 2026": 343.4603,
                            "Q4 2026": 606.8356,
                            "Q3 2025": 358.5082,
                            "Q2 2025": 305.6066,
                            "Q1 2025": 264.2031
                          },
                          "sort_order": 29,
                          "depth": 1,
                          "no_scale": true,
                          "value_format": "multiple",
                          "calc": {
                            "Q1 2027": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 53536012170,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            },
                            "Q3 2026": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 36010006128,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            },
                            "Q2 2026": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 28439983719,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            },
                            "Q1 2026": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 21638011022,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            },
                            "Q4 2026": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 44298968607,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            },
                            "Q3 2025": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 21868996176,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            },
                            "Q2 2025": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 18642012920,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            },
                            "Q1 2025": {
                              "formula": "Operating Income ÷ |Interest Expense|",
                              "inputs": [
                                {
                                  "label": "Operating Income",
                                  "value": 16908988868,
                                  "format": "currency",
                                  "qualifier": "(implied)"
                                }
                              ],
                              "note": "Interest expense is taken at absolute value (filers report it with either sign).…"
                            }
                          }
                        },
                        "Efficiency": {
                          "label": "Efficiency",
                          "values": {},
                          "sort_order": 30,
                          "is_header": true
                        },
                        "Asset Turnover": {
                          "label": "Asset Turnover",
                          "values": {
                            "Q1 2027": 1.2582,
                            "Q3 2026": 1.415,
                            "Q2 2026": 1.3285,
                            "Q1 2026": 1.4071,
                            "Q4 2026": 1.3177,
                            "Q3 2025": 1.4616,
                            "Q2 2025": 1.4099,
                            "Q1 2025": 1.3517
                          },
                          "sort_order": 31,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 326460000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 228024000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 186972000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 176248000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 272508000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 140328000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 120160000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "(Revenue ×4) ÷ Total Assets",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 104176000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Inventory Turnover": {
                          "label": "Inventory Turnover",
                          "values": {
                            "Q1 2027": 3.1722,
                            "Q3 2026": 3.0645,
                            "Q2 2026": 3.4461,
                            "Q1 2026": 6.1392,
                            "Q4 2026": 3.1835,
                            "Q3 2025": 4.6647,
                            "Q2 2025": 4.474,
                            "Q1 2025": 3.8458
                          },
                          "sort_order": 32,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 81832095900.00002,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 60627933216,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 51559959636,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 69576012975.99998,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 68135992763.999985,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 35703933696,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 29863965599.999992,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "(Cost of Revenue ×4) ÷ Inventory",
                              "inputs": [
                                {
                                  "label": "Cost of Revenue (annualized)",
                                  "value": 22552020480,
                                  "format": "currency",
                                  "qualifier": "revenue − gross profit (implied)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Receivables Turnover": {
                          "label": "Receivables Turnover",
                          "values": {
                            "Q1 2027": 8.0192,
                            "Q3 2026": 6.8289,
                            "Q2 2026": 6.7237,
                            "Q1 2026": 7.9635,
                            "Q4 2026": 7.0844,
                            "Q3 2025": 7.9313,
                            "Q2 2025": 8.5027,
                            "Q1 2025": 8.4251
                          },
                          "sort_order": 33,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 326460000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 228024000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 186972000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 176248000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 272508000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 140328000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 120160000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "(Revenue ×4) ÷ Receivables",
                              "inputs": [
                                {
                                  "label": "Revenue",
                                  "value": 104176000000,
                                  "format": "currency",
                                  "qualifier": "quarterly ×4 (annualized)"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Per Share": {
                          "label": "Per Share",
                          "values": {},
                          "sort_order": 34,
                          "is_header": true
                        },
                        "EPS (Diluted)": {
                          "label": "EPS (Diluted)",
                          "values": {
                            "Q1 2027": 2.39,
                            "Q3 2026": 1.3,
                            "Q2 2026": 1.08,
                            "Q1 2026": 0.76,
                            "Q4 2026": 1.76,
                            "Q3 2025": 0.78,
                            "Q2 2025": 0.67,
                            "Q1 2025": 0.598
                          },
                          "sort_order": 35,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2025": {
                              "formula": "As-filed value ÷ split factor",
                              "inputs": [
                                {
                                  "label": "As filed",
                                  "value": 5.98,
                                  "format": "per_share"
                                }
                              ],
                              "note": "The filing reports this per pre-split shares; dividing by the cumulative split f…"
                            }
                          }
                        },
                        "Book Value / Share": {
                          "label": "Book Value / Share",
                          "values": {
                            "Q1 2027": 8.0774,
                            "Q3 2026": 4.8929,
                            "Q2 2026": 4.1206,
                            "Q1 2026": 3.4362,
                            "Q4 2026": 6.4719,
                            "Q3 2025": 2.6909,
                            "Q2 2025": 2.3709,
                            "Q1 2025": 1.9976
                          },
                          "sort_order": 36,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 195474000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 118897000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 100131000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 83843000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 157293000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 65899000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 58157000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Shareholders' Equity ÷ Shares Outstanding ÷ split factor",
                              "inputs": [
                                {
                                  "label": "Shareholders' Equity",
                                  "value": 49142000000,
                                  "format": "currency"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "FCF / Share": {
                          "label": "FCF / Share",
                          "values": {
                            "Q1 2027": 2.0077,
                            "Q3 2026": 0.9101,
                            "Q2 2026": 0.5543,
                            "Q1 2026": 1.0732,
                            "Q4 2026": 1.4361,
                            "Q3 2025": 0.6866,
                            "Q2 2025": 0.5508,
                            "Q1 2025": 0.6088
                          },
                          "sort_order": 37,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2027": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 48587000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2026": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 22115000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2026": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 13470000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2026": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 26187000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q4 2026": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 34904000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q3 2025": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 16814000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q2 2025": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 13511000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            },
                            "Q1 2025": {
                              "formula": "Free Cash Flow ÷ Shares Outstanding ÷ split factor",
                              "inputs": [
                                {
                                  "label": "Free Cash Flow",
                                  "value": 14976000000,
                                  "format": "currency",
                                  "qualifier": "operating cash flow − capex"
                                }
                              ],
                              "note": "Computed at ingestion (compute_ratios.py) from the company's standardized filed …"
                            }
                          }
                        },
                        "Dividends / Share": {
                          "label": "Dividends / Share",
                          "values": {
                            "Q1 2027": 0.01,
                            "Q3 2026": 0.01,
                            "Q2 2026": 0.01,
                            "Q1 2026": 0.01,
                            "Q4 2026": 0.01,
                            "Q3 2025": 0.01,
                            "Q2 2025": 0.01,
                            "Q1 2025": 0.004
                          },
                          "sort_order": 38,
                          "depth": 1,
                          "no_scale": true,
                          "calc": {
                            "Q1 2025": {
                              "formula": "As-filed value ÷ split factor",
                              "inputs": [
                                {
                                  "label": "As filed",
                                  "value": 0.04,
                                  "format": "per_share"
                                }
                              ],
                              "note": "The filing reports this per pre-split shares; dividing by the cumulative split f…"
                            }
                          }
                        }
                      }
                    },
                    "period_meta": {
                      "Q1 2027": {
                        "end_date": "2026-04-26",
                        "fiscal_year": 2027,
                        "fiscal_quarter": 1
                      },
                      "Q3 2026": {
                        "end_date": "2025-10-26",
                        "fiscal_year": 2026,
                        "fiscal_quarter": 3
                      },
                      "Q2 2026": {
                        "end_date": "2025-07-27",
                        "fiscal_year": 2026,
                        "fiscal_quarter": 2
                      },
                      "Q1 2026": {
                        "end_date": "2025-04-27",
                        "fiscal_year": 2026,
                        "fiscal_quarter": 1
                      },
                      "Q4 2026": {
                        "end_date": "2026-01-25",
                        "fiscal_year": 2026,
                        "fiscal_quarter": 4
                      },
                      "Q3 2025": {
                        "end_date": "2024-10-27",
                        "fiscal_year": 2025,
                        "fiscal_quarter": 3
                      },
                      "Q2 2025": {
                        "end_date": "2024-07-28",
                        "fiscal_year": 2025,
                        "fiscal_quarter": 2
                      },
                      "Q1 2025": {
                        "end_date": "2024-04-28",
                        "fiscal_year": 2025,
                        "fiscal_quarter": 1
                      }
                    },
                    "reporting_currency": "USD"
                  },
                  "total_periods": 8
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/fact-source": {
      "get": {
        "summary": "Fact provenance",
        "description": "Provenance for one standardized line: the XBRL fact(s), filing and calculation tree behind a number.",
        "operationId": "get-fact-provenance",
        "tags": [
          "Financial Statements"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "statement",
            "in": "query",
            "description": "income_statement | balance_sheet | cash_flow.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "key",
            "in": "query",
            "description": "Standardized line key.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "end_date",
            "in": "query",
            "description": "Period end date, YYYY-MM-DD.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "period_type",
            "in": "query",
            "description": "annual or quarterly.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "basis",
            "in": "query",
            "description": "Reporting basis.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "provenance": "filed",
                  "std_value": 130497000000,
                  "source_tags": [
                    "us-gaap:Revenues"
                  ],
                  "filing": {
                    "accession_number": "0001045810-25-000023",
                    "filing_type": "10-K",
                    "filing_date": "2025-02-26",
                    "fiscal_year": 2025,
                    "fiscal_quarter": null,
                    "period_end_date": "2025-01-26"
                  },
                  "facts": [
                    {
                      "tag_name": "us-gaap:Revenues",
                      "context_id": "c-1",
                      "label_as_reported": "Revenue",
                      "raw_value": 130497000000,
                      "selected_value": 130497000000,
                      "value_is_derived": false,
                      "unit": "USD",
                      "decimals": -6,
                      "value_type": "duration",
                      "start_date": "2024-01-29",
                      "end_date": "2025-01-26",
                      "instant_date": null,
                      "revisions": [
                        {
                          "accession_number": "0001045810-25-000023",
                          "filing_type": "10-K",
                          "filing_date": "2025-02-26",
                          "fiscal_year": 2025,
                          "fiscal_quarter": null,
                          "context_id": "c-1",
                          "raw_value": 130497000000
                        },
                        {
                          "accession_number": "0001045810-26-000010",
                          "filing_type": "10-K",
                          "filing_date": "2026-02-25",
                          "fiscal_year": 2026,
                          "fiscal_quarter": null,
                          "context_id": "c-4",
                          "raw_value": 130497000000
                        }
                      ]
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/prices": {
      "get": {
        "summary": "Stock prices",
        "description": "Daily OHLCV bars.",
        "operationId": "get-stock-prices",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "range",
            "in": "query",
            "description": "Lookback window.",
            "schema": {
              "type": "string",
              "enum": [
                "1M",
                "3M",
                "6M",
                "YTD",
                "1Y",
                "2Y",
                "5Y",
                "ALL"
              ],
              "default": "1Y"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "symbol": "NVDA",
                  "bars": [
                    {
                      "t": 1730678400000,
                      "o": 137.210007,
                      "h": 138.960007,
                      "l": 135.570007,
                      "c": 136.050003,
                      "v": 187528200
                    },
                    {
                      "t": 1730764800000,
                      "o": 137.449997,
                      "h": 140.369995,
                      "l": 137.330002,
                      "c": 139.910004,
                      "v": 160537400
                    },
                    {
                      "t": 1730851200000,
                      "o": 142.960007,
                      "h": 146.490005,
                      "l": 141.960007,
                      "c": 145.610001,
                      "v": 242043900
                    }
                  ],
                  "displayFrom": 1756080000000
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/filings": {
      "get": {
        "summary": "Company filings",
        "description": "Paginated SEC filing index.",
        "operationId": "get-company-filings",
        "tags": [
          "SEC Filings"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "1-based, default 1.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Default 50.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "types",
            "in": "query",
            "description": "Comma-separated form types, e.g. 10-K,10-Q,8-K.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": [
                    "0001045810"
                  ],
                  "filings": [
                    {
                      "id": 2373706,
                      "accessionNumber": "0001045810-26-000069",
                      "filingType": "8-K",
                      "filingDate": "2026-08-17",
                      "fileSizeBytes": 178196,
                      "cik": "0001045810"
                    },
                    {
                      "id": 2181303,
                      "accessionNumber": "0001045810-26-000065",
                      "filingType": "13F-HR",
                      "filingDate": "2026-08-14",
                      "fileSizeBytes": 6863,
                      "cik": "0001045810"
                    },
                    {
                      "id": 2067351,
                      "accessionNumber": "0001310264-26-000008",
                      "filingType": "4",
                      "filingDate": "2026-08-12",
                      "fileSizeBytes": 8258,
                      "cik": "0001045810"
                    }
                  ],
                  "page": 1,
                  "pageSize": 10,
                  "totalCount": 2145,
                  "totalPages": 215,
                  "typeCounts": {
                    "3": 24,
                    "4": 1400,
                    "5": 25,
                    "144": 243,
                    "10-Q": 82,
                    "10-K/A": 2,
                    "8-K/A": 5,
                    "10-Q/A": 2,
                    "8-K": 241,
                    "10-K": 25,
                    "13F-HR": 11,
                    "5/A": 5,
                    "10-K405/A": 1,
                    "S-1/A": 7,
                    "10-K405": 3,
                    "144/A": 5,
                    "S-1": 1,
                    "DEF 14A": 29,
                    "4/A": 34
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/filings/{accession}": {
      "get": {
        "summary": "Filing detail",
        "description": "One filing with its parsed sections and documents.",
        "operationId": "get-filing-detail",
        "tags": [
          "SEC Filings"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "accession",
            "in": "path",
            "required": true,
            "description": "SEC accession number, e.g. 0001045810-25-000023.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/filing-notes": {
      "get": {
        "summary": "Filing sections",
        "description": "Footnote / section index of the latest annual report.",
        "operationId": "get-filing-sections",
        "tags": [
          "SEC Filings"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/filing-notes/{sectionId}": {
      "get": {
        "summary": "Section text",
        "description": "Plain text of one filing section.",
        "operationId": "get-section-text",
        "tags": [
          "SEC Filings"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sectionId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/events": {
      "get": {
        "summary": "Company 8-K events",
        "description": "8-K material events, typed by event family.",
        "operationId": "get-company-8-k-events",
        "tags": [
          "8-K Events"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Default 50.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": [
                    "0001045810"
                  ],
                  "events": [
                    {
                      "id": 378855,
                      "accessionNumber": "0001045810-26-000069",
                      "filingDate": "2026-08-17",
                      "itemCode": "1.01",
                      "itemName": "Entry into a Material Definitive Agreement",
                      "textSource": "body",
                      "wordCount": 507
                    },
                    {
                      "id": 378856,
                      "accessionNumber": "0001045810-26-000069",
                      "filingDate": "2026-08-17",
                      "itemCode": "2.03",
                      "itemName": "Creation of a Direct Financial Obligation or an Obligation under an Off-Balance Sheet Arrangement of a Registrant",
                      "textSource": "body",
                      "wordCount": 60
                    },
                    {
                      "id": 378857,
                      "accessionNumber": "0001045810-26-000069",
                      "filingDate": "2026-08-17",
                      "itemCode": "7.01",
                      "itemName": "Regulation FD Disclosure",
                      "textSource": "body_and_exhibits",
                      "wordCount": 2015
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/events/{accession}": {
      "get": {
        "summary": "8-K item text",
        "description": "Pre-extracted plain text of one 8-K item.",
        "operationId": "get-8-k-item-text",
        "tags": [
          "8-K Events"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "accession",
            "in": "path",
            "required": true,
            "description": "SEC accession number, e.g. 0001045810-25-000023.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "item",
            "in": "query",
            "description": "8-K item code from the events index (e.g. 2.02, 1.01). REQUIRED for coded items; omit only for a filing's uncoded item.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/segment-revenue": {
      "get": {
        "summary": "Segment revenue",
        "description": "Revenue by business segment (gated segment layer).",
        "operationId": "get-segment-revenue",
        "tags": [
          "Financial Statements"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "segment_revenue": {
                    "label": "Revenue by Product",
                    "axis": "PRODUCT",
                    "fiscalYear": 2026,
                    "fiscalQuarter": null,
                    "periodEndDate": "2026-01-25",
                    "consolidatedRevenue": 215938000000,
                    "items": [
                      {
                        "name": "Compute",
                        "value": 162361000000,
                        "member": "nvda:ComputeMember"
                      },
                      {
                        "name": "Networking",
                        "value": 31376000000,
                        "member": "nvda:NetworkingMember"
                      },
                      {
                        "name": "Gaming",
                        "value": 16042000000,
                        "member": "nvda:GamingMember"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/regional-revenue": {
      "get": {
        "summary": "Regional revenue",
        "description": "Revenue by geography.",
        "operationId": "get-regional-revenue",
        "tags": [
          "Financial Statements"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "regional_revenue": {
                    "label": "Revenue by Region",
                    "axis": "GEOGRAPHY",
                    "fiscalYear": 2026,
                    "fiscalQuarter": null,
                    "periodEndDate": "2026-01-25",
                    "consolidatedRevenue": 215938000000,
                    "items": [
                      {
                        "name": "United States",
                        "value": 149617000000,
                        "member": "country:US"
                      },
                      {
                        "name": "Taiwan",
                        "value": 42345000000,
                        "member": "country:TW"
                      },
                      {
                        "name": "China Including Hong Kong",
                        "value": 19677000000,
                        "member": "nvda:ChinaIncludingHongKongMember"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/capital-structure": {
      "get": {
        "summary": "Capital structure",
        "description": "Share classes, debt and mezzanine instruments.",
        "operationId": "get-capital-structure",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "capital_structure": {
                    "series": [
                      {
                        "period": "2009-01-25",
                        "cash": 1255390000,
                        "debt": null,
                        "equity": 2394652000
                      },
                      {
                        "period": "2010-01-31",
                        "cash": 1728227000,
                        "debt": null,
                        "equity": 2665140000
                      },
                      {
                        "period": "2011-01-30",
                        "cash": 2490563000,
                        "debt": null,
                        "equity": 3181462000
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/overview-series": {
      "get": {
        "summary": "Overview series",
        "description": "Annual revenue, diluted EPS and free cash flow for overview charts.",
        "operationId": "get-overview-series",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/dividends": {
      "get": {
        "summary": "Dividends",
        "description": "Dividend history.",
        "operationId": "get-dividends",
        "tags": [
          "Financial Statements"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": "0000726728",
                  "symbol": "O",
                  "currency": "USD",
                  "events": [
                    {
                      "exDate": "1994-10-26",
                      "type": "Cash",
                      "amount": 0.149999,
                      "amountSplitAdj": 0.072674,
                      "ttm": 0.072674,
                      "changePct": null
                    },
                    {
                      "exDate": "1994-11-25",
                      "type": "Cash",
                      "amount": 0.149999,
                      "amountSplitAdj": 0.072674,
                      "ttm": 0.145348,
                      "changePct": 0
                    },
                    {
                      "exDate": "1994-12-27",
                      "type": "Cash",
                      "amount": 0.149999,
                      "amountSplitAdj": 0.072674,
                      "ttm": 0.218022,
                      "changePct": 0
                    }
                  ],
                  "summary": {
                    "count": 381,
                    "latestAmount": 0.271,
                    "latestExDate": "2026-07-31",
                    "ttmTotal": 3.513
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/calendar": {
      "get": {
        "summary": "Earnings calendar",
        "description": "Upcoming and past earnings / filing dates.",
        "operationId": "get-earnings-calendar",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "events": [
                    {
                      "date": "2026-08-24",
                      "kind": "leadership",
                      "itemCode": "5.02",
                      "label": "Appointed: Nicholas Parker",
                      "accessionNumber": "0001045810-26-000060",
                      "severity": null,
                      "isEarnings": false,
                      "fiscalYear": null,
                      "fiscalQuarter": null
                    },
                    {
                      "date": "2026-08-17",
                      "kind": "filing_event",
                      "itemCode": "7.01",
                      "label": "8-K filed — Regulation FD Disclosure",
                      "accessionNumber": "0001045810-26-000069",
                      "severity": null,
                      "isEarnings": false,
                      "fiscalYear": null,
                      "fiscalQuarter": null
                    },
                    {
                      "date": "2026-08-17",
                      "kind": "filing_event",
                      "itemCode": "2.03",
                      "label": "8-K filed — Creation of a Direct Financial Obligation or an Obligation under an Off-Balance Sheet Arrangement of a Registrant",
                      "accessionNumber": "0001045810-26-000069",
                      "severity": null,
                      "isEarnings": false,
                      "fiscalYear": null,
                      "fiscalQuarter": null
                    }
                  ],
                  "fiscalYearEnd": "0131"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/management": {
      "get": {
        "summary": "Management & votes",
        "description": "Officers, directors, leadership changes and shareholder votes.",
        "operationId": "get-management-votes",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": "0001045810",
                  "officers": [
                    {
                      "ownerCik": "0001347842",
                      "name": "Puri Ajay K",
                      "displayName": "Ajay K. Puri",
                      "officerTitle": "EVP, Worldwide Field Ops",
                      "isDirector": false,
                      "isOfficer": true,
                      "firstFilingDate": "2005-12-22",
                      "lastFilingDate": "2026-06-23",
                      "totalShares": 3665228,
                      "asOfDate": "2026-06-17",
                      "electionSupportPct": null,
                      "electionDate": null,
                      "isCurrent": true,
                      "photoUrl": "/api/v1/people/0001347842/photo"
                    }
                  ],
                  "directors": [
                    {
                      "ownerCik": "0001310264",
                      "name": "NORA JOHNSON SUZANNE M",
                      "displayName": "Johnson Suzanne M. Nora",
                      "officerTitle": null,
                      "isDirector": true,
                      "isOfficer": false,
                      "firstFilingDate": "2026-07-15",
                      "lastFilingDate": "2026-08-12",
                      "totalShares": 4906,
                      "asOfDate": "2026-08-10",
                      "electionSupportPct": null,
                      "electionDate": null,
                      "isCurrent": true,
                      "photoUrl": null
                    }
                  ],
                  "events": [
                    {
                      "accessionNumber": "0001045810-26-000060",
                      "filingDate": "2026-07-02",
                      "personName": "Ajay K. Puri",
                      "roleTitle": "Executive Vice President, Worldwide Field Operations",
                      "action": "retired",
                      "effectiveDate": null,
                      "confidence": "verified",
                      "excerpt": "On June 28, 2026, Ajay K. Puri, Executive Vice President, Worldwide Field Operat…",
                      "isPublishable": true
                    }
                  ],
                  "meetings": [
                    {
                      "accessionNumber": "0001045810-26-000056",
                      "filingDate": "2026-06-30",
                      "meetingDate": null,
                      "proposals": [
                        {
                          "proposalNo": 1,
                          "proposalText": "Stockholders approved the election of each of our ten (10) director nominees to …",
                          "outcome": "elected",
                          "votesFor": null,
                          "votesAgainst": null,
                          "votesWithheld": null,
                          "votesAbstain": null,
                          "brokerNonVotes": null,
                          "extra": null,
                          "nominees": [
                            {
                              "nominee": "Tench Coxe",
                              "votesFor": 15411252412,
                              "votesAgainst": 1399727580,
                              "votesWithheld": null,
                              "votesAbstain": 45709394,
                              "supportPct": 91.6737300224847
                            },
                            {
                              "nominee": "John O. Dabiri",
                              "votesFor": 16400706983,
                              "votesAgainst": 397037222,
                              "votesWithheld": null,
                              "votesAbstain": 58945181,
                              "supportPct": 97.63636582891995
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/ownership": {
      "get": {
        "summary": "Ownership summary",
        "description": "Institutional (13F) and insider ownership summary.",
        "operationId": "get-ownership-summary",
        "tags": [
          "Ownership & Insiders"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": "0001045810",
                  "insiders": [
                    {
                      "ownerCik": "0001197649",
                      "name": "HUANG JEN HSUN",
                      "isDirector": true,
                      "isOfficer": true,
                      "isTenPercentOwner": false,
                      "officerTitle": "President and CEO",
                      "totalShares": 812004746,
                      "directShares": 70146252,
                      "indirectShares": 741858494,
                      "asOfDate": "2026-06-17",
                      "lastFilingDate": "2026-06-23",
                      "accessionNumber": "0001197649-26-000010"
                    },
                    {
                      "ownerCik": "0001199039",
                      "name": "STEVENS MARK A",
                      "isDirector": true,
                      "isOfficer": false,
                      "isTenPercentOwner": false,
                      "officerTitle": null,
                      "totalShares": 31769633,
                      "directShares": 11544612,
                      "indirectShares": 20225021,
                      "asOfDate": "2026-06-25",
                      "lastFilingDate": "2026-06-29",
                      "accessionNumber": "0001199039-26-000009"
                    },
                    {
                      "ownerCik": "0001197647",
                      "name": "COXE TENCH",
                      "isDirector": true,
                      "isOfficer": false,
                      "isTenPercentOwner": false,
                      "officerTitle": null,
                      "totalShares": 29581218,
                      "directShares": 57378,
                      "indirectShares": 29523840,
                      "asOfDate": "2026-08-05",
                      "lastFilingDate": "2026-08-07",
                      "accessionNumber": "0001197647-26-000007"
                    }
                  ],
                  "notices": [
                    {
                      "accessionNumber": "0001950047-26-006396",
                      "filingDate": "2026-06-22",
                      "personName": "DONALD ROBERTSON",
                      "relationships": [
                        "Officer"
                      ],
                      "matchedOwnerCik": "0001526111",
                      "unitsToSell": 4594,
                      "aggregateMarketValue": 967909.86,
                      "approxSaleDate": "2026-06-22",
                      "planAdoptionDate": "2025-09-18",
                      "brokerName": "Morgan Stanley Smith Barney LLC Executive Financial Services"
                    },
                    {
                      "accessionNumber": "0001628280-26-044430",
                      "filingDate": "2026-06-18",
                      "personName": "MARK A STEVENS",
                      "relationships": [
                        "Director"
                      ],
                      "matchedOwnerCik": "0001199039",
                      "unitsToSell": 1700000,
                      "aggregateMarketValue": 347905000,
                      "approxSaleDate": "2026-06-18",
                      "planAdoptionDate": null,
                      "brokerName": "Merrill Lynch"
                    },
                    {
                      "accessionNumber": "0001973727-26-000026",
                      "filingDate": "2026-06-03",
                      "personName": "Neal Stephen C",
                      "relationships": [
                        "Director"
                      ],
                      "matchedOwnerCik": "0001768670",
                      "unitsToSell": 15500,
                      "aggregateMarketValue": 3343863.05,
                      "approxSaleDate": "2026-06-03",
                      "planAdoptionDate": null,
                      "brokerName": "BofA Securities, Inc."
                    }
                  ],
                  "institutions": [
                    {
                      "managerCik": "0002012383",
                      "managerName": "BlackRock, Inc.",
                      "periodOfReport": "2026-06-30",
                      "accessionNumber": "0002012383-26-003238",
                      "shares": 1941918386,
                      "valueUsd": 388558449933,
                      "pctOfSharesOut": 8.0175
                    },
                    {
                      "managerCik": "0002100119",
                      "managerName": "VANGUARD CAPITAL MANAGEMENT LLC",
                      "periodOfReport": "2026-06-30",
                      "accessionNumber": "0002100119-26-001527",
                      "shares": 1540816358,
                      "valueUsd": 308301945072,
                      "pctOfSharesOut": 6.3615
                    },
                    {
                      "managerCik": "0000315066",
                      "managerName": "FMR LLC",
                      "periodOfReport": "2026-06-30",
                      "accessionNumber": "0000315066-26-002260",
                      "shares": 1026051548,
                      "valueUsd": 205302654261,
                      "pctOfSharesOut": 4.2362
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/ownership/transactions": {
      "get": {
        "summary": "Insider transactions",
        "description": "Insider transactions (Forms 3/4/5).",
        "operationId": "get-insider-transactions",
        "tags": [
          "Ownership & Insiders"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter",
            "in": "query",
            "description": "Transaction filter.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "derivatives",
            "in": "query",
            "description": "Include derivative transactions (1).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "1-based.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Page size.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": [
                    "0001045810"
                  ],
                  "transactions": [
                    {
                      "accessionNumber": "0001310264-26-000008",
                      "transactionDate": "2026-08-10",
                      "filingDate": "2026-08-12",
                      "ownerCik": "0001310264",
                      "ownerName": "NORA JOHNSON SUZANNE M",
                      "officerTitle": null,
                      "isDirector": true,
                      "formType": "4",
                      "transactionCode": "A",
                      "acquiredDisposed": "A",
                      "shares": 1262,
                      "pricePerShare": 0,
                      "sharesOwnedFollowing": 1262,
                      "directOrIndirect": "D",
                      "isDerivative": false,
                      "securityTitle": "Common Stock",
                      "is10b51": false
                    },
                    {
                      "accessionNumber": "0001310264-26-000008",
                      "transactionDate": "2026-08-10",
                      "filingDate": "2026-08-12",
                      "ownerCik": "0001310264",
                      "ownerName": "NORA JOHNSON SUZANNE M",
                      "officerTitle": null,
                      "isDirector": true,
                      "formType": "4",
                      "transactionCode": "A",
                      "acquiredDisposed": "A",
                      "shares": 1148,
                      "pricePerShare": 0,
                      "sharesOwnedFollowing": 2410,
                      "directOrIndirect": "D",
                      "isDerivative": false,
                      "securityTitle": "Common Stock",
                      "is10b51": false
                    },
                    {
                      "accessionNumber": "0001197647-26-000007",
                      "transactionDate": "2026-08-05",
                      "filingDate": "2026-08-07",
                      "ownerCik": "0001197647",
                      "ownerName": "COXE TENCH",
                      "officerTitle": null,
                      "isDirector": true,
                      "formType": "4",
                      "transactionCode": "G",
                      "acquiredDisposed": "D",
                      "shares": 500000,
                      "pricePerShare": 0,
                      "sharesOwnedFollowing": 24671360,
                      "directOrIndirect": "I",
                      "isDerivative": false,
                      "securityTitle": "Common",
                      "is10b51": true
                    }
                  ],
                  "page": 1,
                  "pageSize": 5,
                  "totalCount": 4429,
                  "totalPages": 886
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/signals": {
      "get": {
        "summary": "Company signals",
        "description": "Derived signals (insider, ownership, guidance, reaction).",
        "operationId": "get-company-signals",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/scorecard": {
      "get": {
        "summary": "Company scorecard",
        "description": "Guidance-vs-actual scorecard.",
        "operationId": "get-company-scorecard",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/earnings/overview": {
      "get": {
        "summary": "Earnings overview",
        "description": "Earnings overview: latest call, reaction, headline commitments.",
        "operationId": "get-earnings-overview",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/earnings/promises": {
      "get": {
        "summary": "Guidance commitments",
        "description": "Management guidance commitments extracted from earnings calls.",
        "operationId": "get-guidance-commitments",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "ticker": "NVDA",
                  "cik": "0001045810",
                  "callDate": "2026-05-20",
                  "fiscalYear": 2027,
                  "fiscalQuarter": 1,
                  "calls": [
                    {
                      "documentId": 1,
                      "externalId": "31919",
                      "label": "call",
                      "segmentCount": 32,
                      "fiscalYear": 2027,
                      "fiscalQuarter": 1
                    }
                  ],
                  "buckets": {
                    "dueNext": [
                      {
                        "observationId": 2826,
                        "quote": "analysts now forecasting hyperscale CapEx to exceed $1 trillion in 2027",
                        "speaker": "Colette Kress",
                        "section": "prepared",
                        "conceptLabel": "hyperscale CapEx forecast",
                        "value": 1,
                        "valueLow": null,
                        "valueHigh": null,
                        "unit": "usd_trillions",
                        "isNumeric": true,
                        "callDate": "2026-05-20",
                        "externalId": "31919",
                        "callLabel": null,
                        "periodRaw": "in 2027",
                        "bucket": "dueNext",
                        "checksAgainst": "next release / 10-Q"
                      }
                    ],
                    "carveOut": [],
                    "conditional": [],
                    "longDated": [
                      {
                        "observationId": 2828,
                        "quote": "AI infrastructure spending is on track to reach $3 trillion to $4 trillion annua…",
                        "speaker": "Colette Kress",
                        "section": "prepared",
                        "conceptLabel": "AI infrastructure spending forecast",
                        "value": 3,
                        "valueLow": null,
                        "valueHigh": null,
                        "unit": "usd_trillions",
                        "isNumeric": true,
                        "callDate": "2026-05-20",
                        "externalId": "31919",
                        "callLabel": null,
                        "periodRaw": "by the end of this decade",
                        "bucket": "longDated",
                        "checksAgainst": "future filings"
                      }
                    ],
                    "qualitative": [
                      {
                        "observationId": 2728,
                        "quote": "The webcast will be available for replay until the conference call to discuss ou…",
                        "speaker": "Toshiya Hari",
                        "section": "prepared",
                        "conceptLabel": "webcast replay availability",
                        "value": null,
                        "valueLow": null,
                        "valueHigh": null,
                        "unit": null,
                        "isNumeric": false,
                        "callDate": "2026-05-20",
                        "externalId": "31919",
                        "callLabel": null,
                        "periodRaw": "until the conference call to discuss our financial results for the second quarte…",
                        "bucket": "qualitative",
                        "checksAgainst": "FY27 10-K"
                      }
                    ]
                  },
                  "resolvedLastPrint": [
                    {
                      "observationId": 3637,
                      "stdKey": "gross_margin",
                      "targetPeriodEnd": "2026-04-30",
                      "guidedLow": 74.4,
                      "guidedHigh": 75.4,
                      "guidedUnit": "percent",
                      "realizedValue": 74.9335,
                      "withinRange": true,
                      "midpointErrorRel": 0.000447,
                      "speakerName": "Colette Kress",
                      "quote": "GAAP and non-GAAP gross margins are expected to be 74.9% and 75%, respectively, …",
                      "externalId": "20595"
                    }
                  ],
                  "summary": {
                    "verifiedCount": 527,
                    "issuerCount": 10,
                    "lastAuditNote": "audit #5 · 2026-08-01 · 63/63 individually verified"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/earnings/scorecard": {
      "get": {
        "summary": "Guidance scorecard",
        "description": "Per-call scorecard of commitments kept vs missed.",
        "operationId": "get-guidance-scorecard",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "ticker": "NVDA",
                  "predictions": [
                    {
                      "observationId": 3637,
                      "stdKey": "gross_margin",
                      "periodicity": "quarterly",
                      "targetPeriodEnd": "2026-04-30",
                      "guidedLow": 74.4,
                      "guidedHigh": 75.4,
                      "guidedUnit": "percent",
                      "realizedValue": 74.9335,
                      "realizedPeriodEnd": "2026-04-26",
                      "withinRange": true,
                      "midpointErrorRel": 0.000447,
                      "speakerName": "Colette Kress",
                      "speakerRole": "executive",
                      "changeBasis": "level",
                      "reaffirmCount": 0,
                      "revisionSeq": 0,
                      "firstObservedAt": "2026-02-25",
                      "horizonDays": 64,
                      "evidence": {
                        "observationId": 3637,
                        "quote": "GAAP and non-GAAP gross margins are expected to be 74.9% and 75%, respectively, plus or minus 50 bas…",
                        "statement": "NVIDIA expects Q1 FY2027 GAAP gross margin to be 74.9%, plus or minus 50 basis points.",
                        "speakerName": "Colette Kress",
                        "speakerRole": "executive",
                        "ticker": "NVDA",
                        "companyName": "NVIDIA Corporation",
                        "observedAt": "2026-02-25",
                        "observationType": "metric",
                        "direction": null,
                        "verificationStatus": "supported",
                        "documentId": 735,
                        "transcriptExternalId": "20595",
                        "transcriptDate": "2026-02-25",
                        "fiscalLabel": "Q4 FY2026"
                      }
                    },
                    {
                      "observationId": 3638,
                      "stdKey": "gross_margin_non_gaap",
                      "periodicity": "quarterly",
                      "targetPeriodEnd": "2026-04-30",
                      "guidedLow": 74.5,
                      "guidedHigh": 75.5,
                      "guidedUnit": "percent",
                      "realizedValue": 75,
                      "realizedPeriodEnd": "2026-04-26",
                      "withinRange": true,
                      "midpointErrorRel": 0,
                      "speakerName": "Colette Kress",
                      "speakerRole": "executive",
                      "changeBasis": "level",
                      "reaffirmCount": 0,
                      "revisionSeq": 0,
                      "firstObservedAt": "2026-02-25",
                      "horizonDays": 64,
                      "evidence": {
                        "observationId": 3638,
                        "quote": "GAAP and non-GAAP gross margins are expected to be 74.9% and 75%, respectively, plus or minus 50 bas…",
                        "statement": "NVIDIA expects Q1 FY2027 non-GAAP gross margin to be 75%, plus or minus 50 basis points.",
                        "speakerName": "Colette Kress",
                        "speakerRole": "executive",
                        "ticker": "NVDA",
                        "companyName": "NVIDIA Corporation",
                        "observedAt": "2026-02-25",
                        "observationType": "metric",
                        "direction": null,
                        "verificationStatus": "supported",
                        "documentId": 735,
                        "transcriptExternalId": "20595",
                        "transcriptDate": "2026-02-25",
                        "fiscalLabel": "Q4 FY2026"
                      }
                    }
                  ],
                  "aggregate": {
                    "n": 78,
                    "hits": 40,
                    "hitRate": 0.5128205128205128,
                    "sufficient": true,
                    "avgAbsError": 0.03925760256410256,
                    "above": 54,
                    "below": 21,
                    "speakers": 1,
                    "metrics": 6
                  },
                  "tracked": 824,
                  "funnel": {
                    "tracked": 824,
                    "reconciled": 88,
                    "verified": 78,
                    "held": 7
                  },
                  "speakerFunnels": {
                    "Colette Kress": {
                      "tracked": 544,
                      "reconciled": 88,
                      "verified": 78,
                      "held": 7
                    },
                    "Jen-Hsun Huang": {
                      "tracked": 166,
                      "reconciled": 0,
                      "verified": 0,
                      "held": 0
                    },
                    "Jensen Huang;Co-Founder, CEO, President & Director": {
                      "tracked": 113,
                      "reconciled": 0,
                      "verified": 0,
                      "held": 0
                    },
                    "Simona Stefan Jankowski": {
                      "tracked": 1,
                      "reconciled": 0,
                      "verified": 0,
                      "held": 0
                    }
                  },
                  "speakerCiks": {
                    "Colette Kress": "0001588670",
                    "Jen-Hsun Huang": "0001197649",
                    "Jensen Huang": "0001197649"
                  },
                  "corpus": {
                    "predictions": 527,
                    "issuers": 10,
                    "metrics": 22
                  },
                  "caveats": [
                    "A verdict compares the reported figure to the range management themselves gave. It is not a comparis…",
                    "Realized figures are GAAP as filed. Guidance stated on an adjusted or non-GAAP basis is deliberately…"
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/transcripts": {
      "get": {
        "summary": "Transcript index",
        "description": "Earnings-call transcript index.",
        "operationId": "get-transcript-index",
        "tags": [
          "Transcripts & Calls"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": "0001045810",
                  "transcripts": [
                    {
                      "id": "31919",
                      "date": "2026-05-20",
                      "fiscalQuarter": 1,
                      "fiscalYear": 2027,
                      "quarterLabel": "Q1 2027",
                      "company": "NVIDIA Corporation",
                      "ticker": "NVDA",
                      "eventDatetime": "2026-05-20T21:00:00.000Z",
                      "durationSeconds": 3592
                    },
                    {
                      "id": "20595",
                      "date": "2026-02-25",
                      "fiscalQuarter": 4,
                      "fiscalYear": 2026,
                      "quarterLabel": "Q4 2026",
                      "company": "NVIDIA Corporation",
                      "ticker": "NVDA",
                      "eventDatetime": "2026-02-25T22:00:00.000Z",
                      "durationSeconds": 4000
                    },
                    {
                      "id": "13011",
                      "date": "2025-11-19",
                      "fiscalQuarter": 3,
                      "fiscalYear": 2026,
                      "quarterLabel": "Q3 2026",
                      "company": "NVIDIA Corporation",
                      "ticker": "NVDA",
                      "eventDatetime": "2025-11-19T22:00:00.000Z",
                      "durationSeconds": 3867
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/transcripts/{transcriptId}": {
      "get": {
        "summary": "Transcript text",
        "description": "One transcript, as plain text with speaker turns.",
        "operationId": "get-transcript-text",
        "tags": [
          "Transcripts & Calls"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "transcriptId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "date",
            "in": "query",
            "required": true,
            "description": "The transcript's date (YYYY-MM-DD) exactly as returned by the transcript index.",
            "schema": {
              "type": "string",
              "format": "date"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/transcripts/{transcriptId}/annotations": {
      "get": {
        "summary": "Transcript annotations",
        "description": "Span-anchored observations on a transcript.",
        "operationId": "get-transcript-annotations",
        "tags": [
          "Transcripts & Calls"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "transcriptId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/observations": {
      "get": {
        "summary": "Observations",
        "description": "Verified observations extracted from filings and calls.",
        "operationId": "get-observations",
        "tags": [
          "Transcripts & Calls"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "family",
            "in": "query",
            "description": "Observation family, e.g. dividend.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "includeReview",
            "in": "query",
            "description": "Include rows still under review (1).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "cik": [
                    "0001045810"
                  ],
                  "observations": [
                    {
                      "id": 17583,
                      "eventFamily": "leadership",
                      "eventType": "leadership_appointed",
                      "subject": "Nicholas Parker",
                      "action": "appointed",
                      "eventDate": "2026-08-24",
                      "eventDateKind": "effective",
                      "filingDate": "2026-07-02",
                      "summary": "Appointed: Nicholas Parker — Executive Vice President, Worldwide Field Operations",
                      "headline": null,
                      "supportingQuote": "On July 1, 2026, the Company appointed Nicholas Parker, age 55, as Executive Vice President, Worldwide Field Operations of the Company, effective upon the comme…",
                      "metadata": null,
                      "facts": null,
                      "accessionNumber": "0001045810-26-000060",
                      "itemCode": "5.02",
                      "itemName": "Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers: Compensatory Arrangements of Certain Officers",
                      "trust": "verified"
                    },
                    {
                      "id": 17505,
                      "eventFamily": "leadership",
                      "eventType": "leadership_appointed",
                      "subject": "Suzanne Nora Johnson",
                      "action": "appointed",
                      "eventDate": "2026-07-13",
                      "eventDateKind": "effective",
                      "filingDate": "2026-05-08",
                      "summary": "Appointed: Suzanne Nora Johnson",
                      "headline": null,
                      "supportingQuote": "On May 7, 2026, the Board of Directors, or the Board, of NVIDIA Corporation appointed Suzanne Nora Johnson as a member of the Board and as a member of the Audit…",
                      "metadata": null,
                      "facts": null,
                      "accessionNumber": "0001045810-26-000028",
                      "itemCode": "5.02",
                      "itemName": "Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers: Compensatory Arrangements of Certain Officers",
                      "trust": "verified"
                    },
                    {
                      "id": 17582,
                      "eventFamily": "leadership",
                      "eventType": "leadership_retired",
                      "subject": "Ajay K. Puri",
                      "action": "retired",
                      "eventDate": null,
                      "eventDateKind": "effective",
                      "filingDate": "2026-07-02",
                      "summary": "Retired: Ajay K. Puri — Executive Vice President, Worldwide Field Operations",
                      "headline": null,
                      "supportingQuote": "On June 28, 2026, Ajay K. Puri, Executive Vice President, Worldwide Field Operations of NVIDIA Corporation, or the Company, notified the Company of his intentio…",
                      "metadata": null,
                      "facts": null,
                      "accessionNumber": "0001045810-26-000060",
                      "itemCode": "5.02",
                      "itemName": "Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers: Compensatory Arrangements of Certain Officers",
                      "trust": "verified"
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/presentations": {
      "get": {
        "summary": "IR presentations",
        "description": "Investor-relations decks attached to earnings releases.",
        "operationId": "get-ir-presentations",
        "tags": [
          "Transcripts & Calls"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/presentations/{presentationId}/pages/{page}": {
      "get": {
        "summary": "Presentation page image",
        "description": "One rendered page image of an IR deck.",
        "operationId": "get-presentation-page-image",
        "tags": [
          "Transcripts & Calls"
        ],
        "x-tier": "public",
        "security": [],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "presentationId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "image/*": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/companies/{id}/compute": {
      "get": {
        "summary": "Compute exposure",
        "description": "Compute / GPU exposure for hyperscalers and neoclouds.",
        "operationId": "get-compute-exposure",
        "tags": [
          "Company Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/filings": {
      "get": {
        "summary": "Latest filings",
        "description": "Newest completed SEC filings across all covered companies.",
        "operationId": "get-latest-filings",
        "tags": [
          "SEC Filings"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "limit",
            "in": "query",
            "description": "1–100, default 100.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "filings": [
                    {
                      "id": 2652436,
                      "accessionNumber": "0002149900-26-000003",
                      "filingType": "4",
                      "filingDate": "2026-08-21",
                      "fileSizeBytes": 7966,
                      "cik": "0001374310",
                      "companyName": "Cboe Global Markets, Inc.",
                      "ticker": "CBOE"
                    },
                    {
                      "id": 2651645,
                      "accessionNumber": "0002142618-26-000008",
                      "filingType": "4",
                      "filingDate": "2026-08-21",
                      "fileSizeBytes": 6627,
                      "cik": "0001091667",
                      "companyName": null,
                      "ticker": null
                    },
                    {
                      "id": 2651636,
                      "accessionNumber": "0002142618-26-000006",
                      "filingType": "3",
                      "filingDate": "2026-08-21",
                      "fileSizeBytes": 505358,
                      "cik": "0001091667",
                      "companyName": null,
                      "ticker": null
                    }
                  ],
                  "limit": 5
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/filings/{accession}": {
      "get": {
        "summary": "Filing by accession",
        "description": "Look up a filing by accession number alone.",
        "operationId": "get-filing-by-accession",
        "tags": [
          "SEC Filings"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "accession",
            "in": "path",
            "required": true,
            "description": "SEC accession number, e.g. 0001045810-25-000023.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "issuer",
            "in": "query",
            "description": "Issuer CIK when the accession is ambiguous.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/events/latest": {
      "get": {
        "summary": "Latest events",
        "description": "Latest 8-K events across the universe.",
        "operationId": "get-latest-events",
        "tags": [
          "8-K Events"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "family",
            "in": "query",
            "description": "Event family, e.g. mna, leadership, earnings.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Default 30.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "headlines": [
                    {
                      "id": 129266,
                      "headline": "Sysco appoints Tom Ondrof to Board",
                      "eventFamily": "leadership",
                      "eventDate": "2026-09-01",
                      "filingDate": "2026-08-20",
                      "cik": "0000096021",
                      "ticker": "SYY",
                      "companyName": "SYSCO CORP",
                      "accessionNumber": "0000096021-26-000030",
                      "itemCode": "7.01"
                    },
                    {
                      "id": 129265,
                      "headline": "Sysco appoints Jason Murray to Board",
                      "eventFamily": "leadership",
                      "eventDate": "2026-09-01",
                      "filingDate": "2026-08-20",
                      "cik": "0000096021",
                      "ticker": "SYY",
                      "companyName": "SYSCO CORP",
                      "accessionNumber": "0000096021-26-000030",
                      "itemCode": "7.01"
                    },
                    {
                      "id": 129231,
                      "headline": "Royal Caribbean Cruises Ltd. issues $1.25B senior notes due 2034",
                      "eventFamily": "debt_financing",
                      "eventDate": "2026-08-20",
                      "filingDate": "2026-08-20",
                      "cik": "0000884887",
                      "ticker": "RCL",
                      "companyName": "ROYAL CARIBBEAN CRUISES LTD",
                      "accessionNumber": "0001104659-26-099245",
                      "itemCode": "1.01"
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/events/wire": {
      "get": {
        "summary": "Event wire",
        "description": "Searchable headline wire of 8-K events.",
        "operationId": "get-event-wire",
        "tags": [
          "8-K Events"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Full-text query.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "family",
            "in": "query",
            "description": "Comma-separated families.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "description": "YYYY-MM-DD.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "to",
            "in": "query",
            "description": "YYYY-MM-DD.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "newest or oldest.",
            "schema": {
              "type": "string",
              "enum": [
                "newest",
                "oldest"
              ]
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Page size.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Offset.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "counts",
            "in": "query",
            "description": "1 to include per-family totals.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "headlines": [
                    {
                      "id": 126308,
                      "headline": "eBay receives acquisition proposal from GameStop",
                      "eventFamily": "mna",
                      "eventDate": "2026-05-04",
                      "filingDate": "2026-05-05",
                      "cik": "0001065088",
                      "ticker": "EBAY",
                      "companyName": "EBAY INC",
                      "accessionNumber": "0001552781-26-000302",
                      "itemCode": "7.01"
                    },
                    {
                      "id": 129185,
                      "headline": "CoreWeave Compute Acquisition Co. VIII, LLC enters into $8.5B credit agreement",
                      "eventFamily": "mna",
                      "eventDate": "2026-03-30",
                      "filingDate": "2026-03-31",
                      "cik": "0001769628",
                      "ticker": "CRWV",
                      "companyName": "CoreWeave, Inc.",
                      "accessionNumber": "0001769628-26-000129",
                      "itemCode": "1.01"
                    },
                    {
                      "id": 124863,
                      "headline": "EOG Resources acquires Encino Acquisition Partners for $5.6B",
                      "eventFamily": "mna",
                      "eventDate": "2025-08-01",
                      "filingDate": "2025-08-01",
                      "cik": "0000821189",
                      "ticker": "EOG",
                      "companyName": "EOG RESOURCES INC",
                      "accessionNumber": "0000821189-25-000041",
                      "itemCode": "2.01"
                    }
                  ],
                  "total": 180,
                  "limit": 5,
                  "offset": 0
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries": {
      "get": {
        "summary": "List countries",
        "description": "Countries with macro coverage.",
        "operationId": "get-list-countries",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "countries": [
                    {
                      "code": "US",
                      "name": "United States",
                      "alpha_3": "USA",
                      "currency_code": "USD",
                      "region": "Americas",
                      "sub_region": "North America",
                      "population": null,
                      "gdp_usd_bn": 32475.21,
                      "gdp_growth": 3.3500934966208553,
                      "inflation": 3.303856050706308,
                      "debt_to_gdp": 122.59387,
                      "risk_score": null,
                      "risk_band": null,
                      "sp_rating": null
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/gdp-sparklines": {
      "get": {
        "summary": "GDP sparklines",
        "description": "GDP sparklines for a set of countries.",
        "operationId": "get-gdp-sparklines",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "codes",
            "in": "query",
            "description": "Comma-separated ISO codes, e.g. US,GB,JP.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/{iso}": {
      "get": {
        "summary": "Country dashboard",
        "description": "Country macro dashboard: indicators and latest values.",
        "operationId": "get-country-dashboard",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "iso",
            "in": "path",
            "required": true,
            "description": "ISO 3166-1 alpha-2 country code (e.g. US).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "country": {
                    "iso2": "US",
                    "iso3": "USA",
                    "name": "United States",
                    "officialName": null,
                    "region": "Americas",
                    "subregion": "North America",
                    "capital": null,
                    "governmentType": null,
                    "headOfState": null,
                    "headOfGovernment": null,
                    "riskScore": null,
                    "headline": {
                      "population": null,
                      "gdpUsdBn": 32475.21,
                      "gdpGrowth": null,
                      "inflation": null,
                      "unemployment": 4.1,
                      "policyRate": 3.63,
                      "debtToGdp": null,
                      "currencyCode": "USD",
                      "currentAccountPctGdp": null
                    },
                    "ratings": [],
                    "indices": [],
                    "fx": [],
                    "commodities": [],
                    "mostActive": [],
                    "macroSeries": [
                      {
                        "key": "ADP_PAYROLLS",
                        "label": "ADP Private Payroll Employment",
                        "unit": "Thousands of Persons",
                        "category": "labor",
                        "latest": 132653000,
                        "yoyChange": 29000,
                        "history": [
                          {
                            "period": "2024-03-02",
                            "value": 131183000
                          },
                          {
                            "period": "2024-03-09",
                            "value": 131153000
                          }
                        ]
                      },
                      {
                        "key": "AVG_HOURLY_EARNINGS",
                        "label": "Avg Hourly Earnings, Production & Nonsup.",
                        "unit": "$ per Hour",
                        "category": "labor",
                        "latest": 32.4,
                        "yoyChange": 0.03999999999999915,
                        "history": [
                          {
                            "period": "2016-08-01",
                            "value": 21.6
                          },
                          {
                            "period": "2016-09-01",
                            "value": 21.62
                          }
                        ]
                      },
                      {
                        "key": "AVG_WEEKLY_HOURS",
                        "label": "Average Weekly Hours, Total Private",
                        "unit": "Hours",
                        "category": "labor",
                        "latest": 34.3,
                        "yoyChange": 0,
                        "history": [
                          {
                            "period": "2016-08-01",
                            "value": 34.3
                          },
                          {
                            "period": "2016-09-01",
                            "value": 34.4
                          }
                        ]
                      }
                    ],
                    "yieldCurve": [
                      {
                        "tenorMonths": 3,
                        "tenorLabel": "3M",
                        "yield": 3.87
                      },
                      {
                        "tenorMonths": 24,
                        "tenorLabel": "2Y",
                        "yield": 4.19
                      },
                      {
                        "tenorMonths": 60,
                        "tenorLabel": "5Y",
                        "yield": 4.39
                      }
                    ],
                    "upcomingAuctions": [],
                    "leaders": [],
                    "legislature": null,
                    "elections": [],
                    "freedomScore": null,
                    "corruptionIndex": null,
                    "relations": [],
                    "sanctionsImposed": [],
                    "sanctionsAgainst": [],
                    "topTradePartners": [],
                    "treaties": [],
                    "resources": [],
                    "energyMix": [],
                    "foodSelfSufficiency": null,
                    "waterStressIndex": null,
                    "military": null,
                    "news": []
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/{iso}/series": {
      "get": {
        "summary": "Macro series",
        "description": "Full history of one macro series, point-in-time aware.",
        "operationId": "get-macro-series",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "iso",
            "in": "path",
            "required": true,
            "description": "ISO 3166-1 alpha-2 country code (e.g. US).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "key",
            "in": "query",
            "description": "Series key, A-Z0-9_ (e.g. UNRATE).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "history": [],
                  "frequency": null,
                  "description": null,
                  "sourceName": null,
                  "sourceLink": null
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/{iso}/policy-text": {
      "get": {
        "summary": "Policy text overview",
        "description": "Central-bank text corpus summary (Fed: statements, minutes, speeches, Beige Book).",
        "operationId": "get-policy-text-overview",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "iso",
            "in": "path",
            "required": true,
            "description": "ISO 3166-1 alpha-2 country code (e.g. US).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/{iso}/policy-text/documents": {
      "get": {
        "summary": "Policy documents",
        "description": "Policy document index.",
        "operationId": "get-policy-documents",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "iso",
            "in": "path",
            "required": true,
            "description": "ISO 3166-1 alpha-2 country code (e.g. US).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "items": [
                    {
                      "documentId": 21814,
                      "externalId": "speech-jefferson20260716a",
                      "docType": "fed_speech",
                      "title": "Navigating Economic Shocks: A Monetary Policymaker’s Perspective",
                      "eventDate": "2026-07-16",
                      "meetingDate": null,
                      "speaker": "Vice Chair Philip N. Jefferson",
                      "district": null,
                      "sourceUrl": "https://www.federalreserve.gov/newsevents/speech/jefferson20260716a.htm",
                      "observationCount": 0,
                      "byteSize": 16019
                    },
                    {
                      "documentId": 17642,
                      "externalId": "bb-202607-atlanta",
                      "docType": "beige_book",
                      "title": "Beige Book - Atlanta - 2026-07-15",
                      "eventDate": "2026-07-15",
                      "meetingDate": null,
                      "speaker": null,
                      "district": "Atlanta",
                      "sourceUrl": "https://www.federalreserve.gov/monetarypolicy/beigebook202607-atlanta.htm",
                      "observationCount": 80,
                      "byteSize": 8897
                    },
                    {
                      "documentId": 17637,
                      "externalId": "bb-202607-boston",
                      "docType": "beige_book",
                      "title": "Beige Book - Boston - 2026-07-15",
                      "eventDate": "2026-07-15",
                      "meetingDate": null,
                      "speaker": null,
                      "district": "Boston",
                      "sourceUrl": "https://www.federalreserve.gov/monetarypolicy/beigebook202607-boston.htm",
                      "observationCount": 116,
                      "byteSize": 9076
                    }
                  ],
                  "total": 4622,
                  "facets": {
                    "years": [
                      2026,
                      2025,
                      2024
                    ],
                    "speakers": [
                      "Chair Janet L. Yellen",
                      "Chair Jerome H. Powell",
                      "Chair Powell"
                    ],
                    "districts": [
                      "National Summary",
                      "Boston",
                      "New York"
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/{iso}/policy-text/documents/{documentId}": {
      "get": {
        "summary": "Policy document",
        "description": "One policy document.",
        "operationId": "get-policy-document",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "iso",
            "in": "path",
            "required": true,
            "description": "ISO 3166-1 alpha-2 country code (e.g. US).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "documentId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/{iso}/policy-text/districts": {
      "get": {
        "summary": "Beige Book districts",
        "description": "Beige Book district breakdown.",
        "operationId": "get-beige-book-districts",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "iso",
            "in": "path",
            "required": true,
            "description": "ISO 3166-1 alpha-2 country code (e.g. US).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Row limit.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/countries/{iso}/policy-text/guidance": {
      "get": {
        "summary": "Policy guidance",
        "description": "Forward-guidance observations from policy text.",
        "operationId": "get-policy-guidance",
        "tags": [
          "Macro"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "iso",
            "in": "path",
            "required": true,
            "description": "ISO 3166-1 alpha-2 country code (e.g. US).",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Row limit.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/indices": {
      "get": {
        "summary": "List benchmarks",
        "description": "Benchmark indices and sector ETFs.",
        "operationId": "get-list-benchmarks",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "indices": [
                    {
                      "symbol": "SPY",
                      "name": "SPDR S&P 500 ETF Trust",
                      "short_name": "S&P 500",
                      "category": "broad_market",
                      "benchmark_role": "market",
                      "sector_key": null,
                      "index_family": "S&P 500",
                      "issuer": "State Street",
                      "expense_ratio": 0.0945,
                      "inception_date": "1993-01-22",
                      "last_price": 765.719971,
                      "last_price_date": "2026-08-21",
                      "return_1d": 0.004091260291358756,
                      "return_1w": -0.013679645040381216,
                      "return_1m": 0.023306705142601025,
                      "return_ytd": 0.12885560863708556,
                      "return_1y": 0.21816440082463728,
                      "return_5y": 0.847878538609889,
                      "low_52w": 629.280029,
                      "high_52w": 779.369995,
                      "volatility_30d": 0.12358656186305594,
                      "price_rows": 8448,
                      "days_stale": 3
                    },
                    {
                      "symbol": "QQQ",
                      "name": "Invesco QQQ Trust, Series 1",
                      "short_name": "Nasdaq-100",
                      "category": "broad_market",
                      "benchmark_role": "none",
                      "sector_key": null,
                      "index_family": "Nasdaq-100",
                      "issuer": "Invesco",
                      "expense_ratio": 0.2,
                      "inception_date": "1999-03-10",
                      "last_price": 713.440002,
                      "last_price_date": "2026-08-21",
                      "return_1d": 0.0035305993905367927,
                      "return_1w": -0.024115344400936434,
                      "return_1m": 0.006304965207052593,
                      "return_ytd": 0.16411036717849448,
                      "return_1y": 0.27268141471996343,
                      "return_5y": 0.9991140896122617,
                      "low_52w": 555.599976,
                      "high_52w": 748.650024,
                      "volatility_30d": 0.21897382889282002,
                      "price_rows": 6906,
                      "days_stale": 3
                    },
                    {
                      "symbol": "DIA",
                      "name": "SPDR Dow Jones Industrial Average ETF",
                      "short_name": "Dow 30",
                      "category": "broad_market",
                      "benchmark_role": "none",
                      "sector_key": null,
                      "index_family": "Dow Jones Industrial Average",
                      "issuer": "State Street",
                      "expense_ratio": 0.16,
                      "inception_date": "1998-01-14",
                      "last_price": 532.219971,
                      "last_price_date": "2026-08-21",
                      "return_1d": 0.009765199544523151,
                      "return_1w": -0.007710040455795486,
                      "return_1m": 0.021382576900711436,
                      "return_ytd": 0.11701306676802092,
                      "return_1y": 0.2063183455157358,
                      "return_5y": 0.6524115739244694,
                      "low_52w": 450.160004,
                      "high_52w": 546.75,
                      "volatility_30d": 0.1276985638829502,
                      "price_rows": 7192,
                      "days_stale": 3
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/indices/{symbol}": {
      "get": {
        "summary": "Benchmark detail",
        "description": "One benchmark.",
        "operationId": "get-benchmark-detail",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "symbol",
            "in": "path",
            "required": true,
            "description": "Index / ETF symbol, e.g. SPY.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/indices/{symbol}/prices": {
      "get": {
        "summary": "Benchmark prices",
        "description": "Daily bars for a benchmark.",
        "operationId": "get-benchmark-prices",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "symbol",
            "in": "path",
            "required": true,
            "description": "Index / ETF symbol.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "range",
            "in": "query",
            "description": "Lookback window.",
            "schema": {
              "type": "string",
              "enum": [
                "1M",
                "3M",
                "6M",
                "YTD",
                "1Y",
                "2Y",
                "5Y",
                "ALL"
              ],
              "default": "1Y"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "symbol": "SPY",
                  "bars": [
                    {
                      "t": 1730678400000,
                      "o": 571.179993,
                      "h": 572.5,
                      "l": 567.890015,
                      "c": 569.809998,
                      "v": 38217000
                    },
                    {
                      "t": 1730764800000,
                      "o": 570.73999,
                      "h": 576.73999,
                      "l": 570.52002,
                      "c": 576.700012,
                      "v": 39478300
                    },
                    {
                      "t": 1730851200000,
                      "o": 589.200012,
                      "h": 591.929993,
                      "l": 585.390015,
                      "c": 591.039978,
                      "v": 68182000
                    }
                  ],
                  "displayFrom": 1756080000000
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/commodities": {
      "get": {
        "summary": "List commodities & compute",
        "description": "Commodity and compute instruments (including GPU rental prices).",
        "operationId": "get-list-commodities-compute",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "commodities": [
                    {
                      "symbol": "H100",
                      "name": "NVIDIA H100 SXM",
                      "short_name": "H100 SXM",
                      "asset_class": "compute",
                      "category": "gpu",
                      "tier": "reference",
                      "parent_symbol": null,
                      "host_code": null,
                      "instance_family": null,
                      "vendor": "NVIDIA",
                      "unit": "USD per GPU-hour",
                      "attributes": {
                        "basis": "on-demand, transaction-weighted",
                        "source": "Ornn OCPI",
                        "vram_gb": 80,
                        "form_factor": "SXM5",
                        "architecture": "Hopper",
                        "interconnect": "NVLink"
                      },
                      "provider": "ORNN",
                      "premium_vs_reference": null,
                      "spec": {
                        "chip": "GH100",
                        "tdp_w": 700,
                        "die_mm2": 814,
                        "vram_gb": 80,
                        "fp8_tflops": 1979,
                        "process_nm": 5,
                        "form_factor": "SXM5",
                        "fp16_tflops": 989.4,
                        "launch_date": "2022-09-20",
                        "memory_type": "HBM3",
                        "spec_source": "Epoch AI, Machine Learning Hardware (CC-BY 4.0)",
                        "architecture": "Hopper",
                        "manufacturer": "NVIDIA",
                        "mem_bus_bits": 5120,
                        "bandwidth_gbs": 3350,
                        "transistors_m": 80000,
                        "spec_source_url": "https://resources.nvidia.com/en-us-tensor-core/nvidia-tensor-core-gpu-datasheet",
                        "launch_price_usd": 33600,
                        "launch_price_note": "Epoch: no official MSRP; $269k DGX H100 ÷ 8 (SemiAnalysis, May 2023)."
                      },
                      "hosts": [
                        {
                          "host_code": "AWS",
                          "host_name": "Amazon Web Services",
                          "company_ticker": "AMZN",
                          "company_name": "AMAZON COM INC",
                          "company_website": "https://www.amazon.com/",
                          "instance_family": "p5.48xlarge",
                          "gpus_per_instance": 8,
                          "vram_variant_gb": 80,
                          "notes": "EC2 P5, 8× H100 SXM, 3.2 Tbps EFA",
                          "url": "https://aws.amazon.com/ec2/instance-types/p5/"
                        }
                      ],
                      "last_price": 2.8675,
                      "last_price_date": "2026-08-23",
                      "return_1d": null,
                      "return_ytd": null,
                      "return_1y": null,
                      "volatility_30d": 0.69768230015857,
                      "price_rows": 96,
                      "days_stale": 1,
                      "gflops_per_watt": 1413.4285714285713,
                      "usd_per_pflop_hour": 2.8982211441277546,
                      "launch_usd_per_tflops": 33.95997574287447,
                      "closes": [
                        3.2
                      ],
                      "display_order": 10
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/commodities/{symbol}": {
      "get": {
        "summary": "Instrument detail",
        "description": "One instrument with spec and venues.",
        "operationId": "get-instrument-detail",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "symbol",
            "in": "path",
            "required": true,
            "description": "Instrument symbol.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/commodities/{symbol}/prices": {
      "get": {
        "summary": "Instrument prices",
        "description": "Daily bars for an instrument.",
        "operationId": "get-instrument-prices",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "symbol",
            "in": "path",
            "required": true,
            "description": "Instrument symbol.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "range",
            "in": "query",
            "description": "Lookback window.",
            "schema": {
              "type": "string",
              "enum": [
                "1M",
                "3M",
                "6M",
                "YTD",
                "1Y",
                "2Y",
                "5Y",
                "ALL"
              ],
              "default": "1Y"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "symbol": "WTI",
                  "bars": [],
                  "displayFrom": null
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/commodities/{symbol}/mentions": {
      "get": {
        "summary": "Instrument mentions",
        "description": "Earnings-call mentions of the instrument.",
        "operationId": "get-instrument-mentions",
        "tags": [
          "Market Data"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "symbol",
            "in": "path",
            "required": true,
            "description": "Instrument symbol.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/people": {
      "get": {
        "summary": "People registry",
        "description": "People registry: executives and directors.",
        "operationId": "get-people-registry",
        "tags": [
          "Ownership & Insiders"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "rows": [
                    {
                      "personCik": "0001588670",
                      "name": "Colette Kress",
                      "personType": "executive",
                      "secName": "Kress Colette",
                      "photoUrl": "/api/v1/people/0001588670/photo",
                      "primaryTicker": "NVDA",
                      "primaryCompanyName": "NVIDIA CORP",
                      "primaryTitle": "EVP & Chief Financial Officer",
                      "isOfficer": true,
                      "isDirector": false,
                      "isTenPercentOwner": false,
                      "companyCount": 1,
                      "tickers": [
                        "NVDA"
                      ],
                      "firstFilingDate": "2013-10-09",
                      "lastFilingDate": "2026-06-23",
                      "isCurrent": true,
                      "sharesHeld": 4851271,
                      "positions": [
                        {
                          "ticker": "NVDA",
                          "shares": 4851271
                        }
                      ],
                      "predictions": 78,
                      "verified": 78,
                      "hits": 40,
                      "hitRate": 0.5128205128205128,
                      "sufficient": true,
                      "avgAbsError": 0.039257602564102566,
                      "calls": 26,
                      "observations": 4084
                    },
                    {
                      "personCik": "0001197649",
                      "name": "Jen Hsun Huang",
                      "personType": "executive",
                      "secName": "HUANG JEN HSUN",
                      "photoUrl": "/api/v1/people/0001197649/photo",
                      "primaryTicker": "NVDA",
                      "primaryCompanyName": "NVIDIA CORP",
                      "primaryTitle": "President and CEO",
                      "isOfficer": true,
                      "isDirector": true,
                      "isTenPercentOwner": false,
                      "companyCount": 1,
                      "tickers": [
                        "NVDA"
                      ],
                      "firstFilingDate": "2003-05-05",
                      "lastFilingDate": "2026-06-23",
                      "isCurrent": true,
                      "sharesHeld": 812004746,
                      "positions": [
                        {
                          "ticker": "NVDA",
                          "shares": 812004746
                        }
                      ],
                      "predictions": 0,
                      "verified": 0,
                      "hits": 0,
                      "hitRate": null,
                      "sufficient": false,
                      "avgAbsError": null,
                      "calls": 13,
                      "observations": 1858
                    },
                    {
                      "personCik": "0001197647",
                      "name": "Tench Coxe",
                      "personType": "director",
                      "secName": "COXE TENCH",
                      "photoUrl": "/api/v1/people/0001197647/photo",
                      "primaryTicker": "NVDA",
                      "primaryCompanyName": "NVIDIA CORP",
                      "primaryTitle": null,
                      "isOfficer": false,
                      "isDirector": true,
                      "isTenPercentOwner": false,
                      "companyCount": 1,
                      "tickers": [
                        "NVDA"
                      ],
                      "firstFilingDate": "2003-08-05",
                      "lastFilingDate": "2026-08-07",
                      "isCurrent": true,
                      "sharesHeld": 29581218,
                      "positions": [
                        {
                          "ticker": "NVDA",
                          "shares": 29581218
                        }
                      ],
                      "predictions": 0,
                      "verified": 0,
                      "hits": 0,
                      "hitRate": null,
                      "sufficient": false,
                      "avgAbsError": null,
                      "calls": 0,
                      "observations": 0
                    }
                  ],
                  "total": 22656,
                  "offset": 0,
                  "limit": 50,
                  "universe": {
                    "people": 22656,
                    "officers": 15013,
                    "directors": 10012,
                    "institutions": 2574,
                    "withScorecard": 21,
                    "speakers": 411
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/people/{cik}": {
      "get": {
        "summary": "Person profile",
        "description": "One person: roles, tenure, holdings.",
        "operationId": "get-person-profile",
        "tags": [
          "Ownership & Insiders"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "cik",
            "in": "path",
            "required": true,
            "description": "Reporting-owner CIK.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/people/{cik}/photo": {
      "get": {
        "summary": "Person photo",
        "description": "Person photo.",
        "operationId": "get-person-photo",
        "tags": [
          "Ownership & Insiders"
        ],
        "x-tier": "public",
        "security": [],
        "parameters": [
          {
            "name": "cik",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "image/*": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/people/{cik}/transactions": {
      "get": {
        "summary": "Person transactions",
        "description": "Insider transactions filed by this person.",
        "operationId": "get-person-transactions",
        "tags": [
          "Ownership & Insiders"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "cik",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Page size.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Offset.",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/scorecards/executives": {
      "get": {
        "summary": "Executive leaderboard",
        "description": "Executive credibility leaderboard (guidance kept vs missed).",
        "operationId": "get-executive-leaderboard",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "executives": [
                    {
                      "speaker_name": "Amy Hood",
                      "companies": [
                        "MSFT"
                      ],
                      "metrics": [
                        "cost_of_revenue",
                        "effective_tax_rate",
                        "opex"
                      ],
                      "n": 144,
                      "hits": 28,
                      "hit_rate": 0.19444444444444445,
                      "sufficient": true,
                      "beats": 83,
                      "shortfalls": 61,
                      "avg_abs_error": 0.05477642361111111,
                      "avg_signed_error": 0.01678820138888889,
                      "avg_horizon_days": 71.29166666666667,
                      "last_target_period": "2026-06-30"
                    },
                    {
                      "speaker_name": "Colette Kress",
                      "companies": [
                        "NVDA"
                      ],
                      "metrics": [
                        "capex",
                        "gross_margin",
                        "gross_margin_non_gaap"
                      ],
                      "n": 78,
                      "hits": 40,
                      "hit_rate": 0.5128205128205128,
                      "sufficient": true,
                      "beats": 54,
                      "shortfalls": 21,
                      "avg_abs_error": 0.039257602564102566,
                      "avg_signed_error": 0.008489653846153846,
                      "avg_horizon_days": 71.73076923076923,
                      "last_target_period": "2026-04-30"
                    },
                    {
                      "speaker_name": "Luca Maestri",
                      "companies": [
                        "AAPL"
                      ],
                      "metrics": [
                        "dps",
                        "effective_tax_rate",
                        "gross_margin"
                      ],
                      "n": 59,
                      "hits": 30,
                      "hit_rate": 0.5084745762711864,
                      "sufficient": true,
                      "beats": 23,
                      "shortfalls": 31,
                      "avg_abs_error": 0.6015978135593221,
                      "avg_signed_error": 0.5475261186440677,
                      "avg_horizon_days": 61.32203389830509,
                      "last_target_period": "2024-12-31"
                    }
                  ],
                  "min_predictions_for_rate": 10
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/scorecards/executives/{name}": {
      "get": {
        "summary": "Executive scorecard",
        "description": "One executive's scorecard.",
        "operationId": "get-executive-scorecard",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/scorecards/events": {
      "get": {
        "summary": "Scored earnings events",
        "description": "Earnings events with guidance outcomes.",
        "operationId": "get-scored-earnings-events",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "ticker",
            "in": "query",
            "description": "Filter by ticker.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Page size.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "withCommitments",
            "in": "query",
            "description": "1 to embed commitments.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "events": [
                    {
                      "document_id": "34553",
                      "ticker": "GD",
                      "cik": "0000040533",
                      "event_date": "2026-07-29",
                      "fiscal_year": 2026,
                      "fiscal_quarter": 2,
                      "timing_class": "premarket",
                      "abn_mkt_1d": -0.015717,
                      "abn_mkt_5d": -0.060025,
                      "abn_mkt_21d": null,
                      "abn_mkt_63d": null,
                      "abn_sec_1d": 0.000842,
                      "ret_1d": -0.031105,
                      "sector_symbol": "XLI",
                      "resolved": 0,
                      "kept": 0,
                      "fidelity_rate": null
                    },
                    {
                      "document_id": "34552",
                      "ticker": "PG",
                      "cik": "0000080424",
                      "event_date": "2026-07-29",
                      "fiscal_year": 2026,
                      "fiscal_quarter": 4,
                      "timing_class": "premarket",
                      "abn_mkt_1d": -0.003285,
                      "abn_mkt_5d": -0.046972,
                      "abn_mkt_21d": null,
                      "abn_mkt_63d": null,
                      "abn_sec_1d": -0.022119,
                      "ret_1d": -0.018673,
                      "sector_symbol": "XLP",
                      "resolved": 0,
                      "kept": 0,
                      "fidelity_rate": null
                    },
                    {
                      "document_id": "34554",
                      "ticker": "SBUX",
                      "cik": "0000829224",
                      "event_date": "2026-07-29",
                      "fiscal_year": 2026,
                      "fiscal_quarter": 3,
                      "timing_class": "postclose",
                      "abn_mkt_1d": -0.000346,
                      "abn_mkt_5d": -0.037427,
                      "abn_mkt_21d": null,
                      "abn_mkt_63d": null,
                      "abn_sec_1d": 0.009432,
                      "ret_1d": 0.01642,
                      "sector_symbol": "XLY",
                      "resolved": 0,
                      "kept": 0,
                      "fidelity_rate": null
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/scorecards/events/{id}": {
      "get": {
        "summary": "Scored event detail",
        "description": "One scored earnings event.",
        "operationId": "get-scored-event-detail",
        "tags": [
          "Guidance & Scorecards"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/pulse": {
      "get": {
        "summary": "Narrative pulse",
        "description": "Narrative pulse for a set of tickers or a sector.",
        "operationId": "get-narrative-pulse",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "tickers",
            "in": "query",
            "description": "Comma-separated tickers.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sector",
            "in": "query",
            "description": "Sector name.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "asOf": "2026-07-29",
                  "universe": {
                    "activeNarratives": 1843,
                    "issuers": 99,
                    "supportedObservations": 467560,
                    "claimEdges": 14
                  },
                  "items": [
                    {
                      "narrativeId": 173,
                      "name": "Financial Firms Investing in AI Capabilities",
                      "description": "Major financial services companies discussing their investments in artificial intelligence and gener…",
                      "lifecycleState": "accelerating",
                      "prevLifecycleState": "accelerating",
                      "breadth": 11,
                      "breadthPrevQuarter": 13,
                      "velocity": 48,
                      "acceleration": 50,
                      "volume28d": 48,
                      "netDirection": 0.8947,
                      "forwardShare": 0.44,
                      "sparkline": [
                        44,
                        51
                      ],
                      "topQuote": {
                        "observationId": 627362,
                        "quote": "we're just going to continue to lean into using these tools to drive efficiency and effectiveness",
                        "statement": "Visa expects to continue using AI tools to drive efficiency and effectiveness.",
                        "speakerName": "Ryan McInerney",
                        "speakerRole": "executive",
                        "ticker": "V",
                        "companyName": "Visa Inc.",
                        "observedAt": "2026-07-28",
                        "observationType": "guidance",
                        "direction": null,
                        "verificationStatus": "supported",
                        "documentId": 34599,
                        "transcriptExternalId": "248472",
                        "transcriptDate": "2026-07-28",
                        "fiscalLabel": "Q3 FY2026"
                      },
                      "rankScore": 78.4
                    },
                    {
                      "narrativeId": 962,
                      "name": "Wireless Service Revenue Growth Trends",
                      "description": "Tracks quarterly and annual wireless/mobility service revenue and EBITDA growth rates for major U.S.…",
                      "lifecycleState": "accelerating",
                      "prevLifecycleState": "accelerating",
                      "breadth": 7,
                      "breadthPrevQuarter": 6,
                      "velocity": 25,
                      "acceleration": 25,
                      "volume28d": 25,
                      "netDirection": 0.9286,
                      "forwardShare": 0.3214,
                      "sparkline": [
                        4,
                        12
                      ],
                      "topQuote": {
                        "observationId": 495401,
                        "quote": "implies that the second half would suggest that we see positive revenue growth.",
                        "statement": "Verizon expects positive wireless service revenue growth in the second half of FY2026.",
                        "speakerName": "Anthony Skiadas",
                        "speakerRole": "executive",
                        "ticker": "VZ",
                        "companyName": "Verizon Communications Inc.",
                        "observedAt": "2026-07-24",
                        "observationType": "guidance",
                        "direction": "increasing",
                        "verificationStatus": "supported",
                        "documentId": 34593,
                        "transcriptExternalId": "248067",
                        "transcriptDate": "2026-07-24",
                        "fiscalLabel": "Q2 FY2026"
                      },
                      "rankScore": 46.25
                    }
                  ],
                  "validatedStrip": [
                    {
                      "edgeId": "e-dccapex-power",
                      "label": "Data-Center Capex Acceleration → Power & Grid Constraints",
                      "scope": "power equipment & prime-power suppliers",
                      "verdict": "supported",
                      "method": "event_study",
                      "effectLabel": "+19% power-gen orders",
                      "lagLabel": "1Q lag",
                      "nEvents": 12,
                      "qValue": 0.02,
                      "testedAt": "2026-06-28"
                    },
                    {
                      "edgeId": "e-ai-dccapex",
                      "label": "Surging AI Compute Demand: Training & Inference → Data-Center Capex Acceleration",
                      "scope": "hyperscalers + AI infrastructure buyers",
                      "verdict": "supported",
                      "method": "event_study",
                      "effectLabel": "+38% capex growth YoY",
                      "lagLabel": "1Q lag",
                      "nEvents": 24,
                      "qValue": 0.001,
                      "testedAt": "2026-06-28"
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/narratives": {
      "get": {
        "summary": "List narratives",
        "description": "Active cross-company narratives.",
        "operationId": "get-list-narratives",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "asOf": "2026-07-29",
                  "items": [
                    {
                      "narrativeId": 754,
                      "name": "FY2026 Adjusted Operating Income Growth",
                      "description": "This cluster tracks year-over-year adjusted operating income and earnings per share growth for industrials, logistics, and defense companies in FY2026, with a h…",
                      "lifecycleState": "accelerating",
                      "breadth": 15,
                      "breadthPrevQuarter": 17,
                      "momentum": 124,
                      "mentions28d": 147,
                      "netDirection": 0.9178,
                      "forwardShare": 0.0052,
                      "sectorCount": 4,
                      "matchedTickers": [
                        "ACN",
                        "BA",
                        "CAT"
                      ],
                      "companyMentions": 466,
                      "policyMentions": 0,
                      "policyVoices": 0,
                      "policyVoiceNames": []
                    },
                    {
                      "narrativeId": 465,
                      "name": "Healthcare Sector Q1 FY2026 Earnings Performance",
                      "description": "Statements summarizing healthcare and life sciences companies' Q1 FY2026 quarterly results, broadly characterizing performance as strong, solid, or in line with…",
                      "lifecycleState": "accelerating",
                      "breadth": 11,
                      "breadthPrevQuarter": 10,
                      "momentum": 133,
                      "mentions28d": 133,
                      "netDirection": 0.8992,
                      "forwardShare": 0.0963,
                      "sectorCount": 4,
                      "matchedTickers": [
                        "ABBV",
                        "ABT",
                        "AMGN"
                      ],
                      "companyMentions": 478,
                      "policyMentions": 0,
                      "policyVoices": 0,
                      "policyVoiceNames": []
                    },
                    {
                      "narrativeId": 896,
                      "name": "Industrial Companies' FY2026 Revenue Growth Guidance",
                      "description": "Major industrial and logistics companies providing forward guidance on revenue and sales growth expectations for fiscal year 2026, including specific quarterly …",
                      "lifecycleState": "accelerating",
                      "breadth": 14,
                      "breadthPrevQuarter": 13,
                      "momentum": 94,
                      "mentions28d": 105,
                      "netDirection": 0.8678,
                      "forwardShare": 0.9419,
                      "sectorCount": 2,
                      "matchedTickers": [
                        "BA",
                        "CAT",
                        "DE"
                      ],
                      "companyMentions": 610,
                      "policyMentions": 0,
                      "policyVoices": 0,
                      "policyVoiceNames": []
                    }
                  ],
                  "total": 1267,
                  "hiddenByFloor": 0,
                  "universeTotal": 1843,
                  "policyOnlyTotal": 182
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/narratives/{id}": {
      "get": {
        "summary": "Narrative detail",
        "description": "One narrative with member observations and daily metrics.",
        "operationId": "get-narrative-detail",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/company/{id}": {
      "get": {
        "summary": "Company intelligence",
        "description": "Company intelligence summary.",
        "operationId": "get-company-intelligence",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/company/{id}/claims": {
      "get": {
        "summary": "Company claims",
        "description": "Causal claims made by or about the company.",
        "operationId": "get-company-claims",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/company/{id}/themes": {
      "get": {
        "summary": "Company themes",
        "description": "Themes the company is exposed to.",
        "operationId": "get-company-themes",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Ticker symbol (e.g. NVDA) or numeric SEC CIK (zero-padding optional).",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/graph": {
      "get": {
        "summary": "Claim graph",
        "description": "Validated claim graph (nodes and edges).",
        "operationId": "get-claim-graph",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "focus",
            "in": "query",
            "description": "Node id to centre the subgraph on.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "nodes": [
                    {
                      "nodeId": "nar-297",
                      "kind": "narrative",
                      "label": "Tariff Uncertainty and Trade Policy Volatility",
                      "description": "Import tariffs (IEEPA, Section 232/122) and trade-policy churn as a cost and planning shock.",
                      "narrativeId": 297,
                      "breadth": 1,
                      "lifecycleState": "steady"
                    },
                    {
                      "nodeId": "nar-174",
                      "kind": "narrative",
                      "label": "Surging AI Compute Demand: Training & Inference",
                      "description": "Accelerating demand for AI training and inference capacity.",
                      "narrativeId": 174,
                      "breadth": 8,
                      "lifecycleState": "fading"
                    }
                  ],
                  "edges": [
                    {
                      "edgeId": "e-tariff-input",
                      "causeNodeId": "nar-297",
                      "effectNodeId": "fac-input-costs",
                      "direction": "increasing",
                      "supportCount": 61,
                      "breadthIssuers": 34,
                      "firstObserved": "2025-04-15",
                      "lastObserved": "2026-06-30",
                      "source": "claimed",
                      "state": "validated",
                      "claimedLagHint": "immediate to one quarter",
                      "evidenceObservationIds": [
                        334306,
                        235478
                      ],
                      "validations": [
                        {
                          "method": "event_study",
                          "eventWindow": "[-5, +40] trading days",
                          "effectLabel": "+112 bps COGS growth vs sector",
                          "effectSize": 112,
                          "effectUnit": "bps",
                          "lagDays": 45,
                          "nEvents": 41,
                          "pValue": 0.0021,
                          "qValue": 0.008,
                          "verdict": "supported",
                          "testedAt": "2026-06-28",
                          "scope": "import-exposed issuers, S&P 100",
                          "note": "Market- and sector-adjusted; FDR-controlled across the edge set."
                        }
                      ]
                    },
                    {
                      "edgeId": "e-input-margin",
                      "causeNodeId": "fac-input-costs",
                      "effectNodeId": "fac-gross-margin",
                      "direction": "decreasing",
                      "supportCount": 48,
                      "breadthIssuers": 27,
                      "firstObserved": "2025-04-28",
                      "lastObserved": "2026-06-30",
                      "source": "claimed",
                      "state": "validated",
                      "claimedLagHint": "one to two quarters",
                      "evidenceObservationIds": [
                        429228,
                        334306
                      ],
                      "validations": [
                        {
                          "method": "event_study",
                          "eventWindow": "next 2 fiscal quarters",
                          "effectLabel": "−178 bps gross margin",
                          "effectSize": -178,
                          "effectUnit": "bps",
                          "lagDays": 182,
                          "nEvents": 34,
                          "pValue": 0.0034,
                          "qValue": 0.012,
                          "verdict": "supported",
                          "testedAt": "2026-06-28",
                          "scope": "import-heavy consumer & retail",
                          "note": "Effect concentrated in import-heavy retailers; ~2 quarters after cost claims."
                        },
                        {
                          "method": "guidance_recon",
                          "eventWindow": "guided vs realized, next quarter",
                          "effectLabel": "guided margin hit realized 0.86×",
                          "effectSize": 0.86,
                          "effectUnit": "ratio",
                          "lagDays": 91,
                          "nEvents": 21,
                          "pValue": 0.011,
                          "qValue": 0.031,
                          "verdict": "supported",
                          "testedAt": "2026-06-21",
                          "scope": "issuers guiding tariff-related margin impact",
                          "note": "Management slightly over-guides the hit on average (0.86× realized)."
                        }
                      ]
                    }
                  ],
                  "focusNodeId": null,
                  "asOf": "2026-07-29",
                  "coverageNote": "Narrative nodes, breadth and all evidence quotes are live registry data. Factor nodes, edge aggregat…"
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/graph/edges/{edgeId}": {
      "get": {
        "summary": "Graph edge evidence",
        "description": "One claim-graph edge with its supporting observations.",
        "operationId": "get-graph-edge-evidence",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "parameters": [
          {
            "name": "edgeId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ticker",
            "in": "query",
            "description": "Restrict evidence to one ticker.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/intelligence/simulate": {
      "post": {
        "summary": "Run simulation",
        "description": "Monte-Carlo propagation of a shock through the validated claim graph. Deterministic by seed.",
        "operationId": "post-run-simulation",
        "tags": [
          "Intelligence"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "nodeId",
                  "magnitudePct"
                ],
                "properties": {
                  "nodeId": {
                    "type": "string",
                    "maxLength": 64,
                    "description": "Graph node to shock."
                  },
                  "magnitudePct": {
                    "type": "number",
                    "minimum": -100,
                    "maximum": 100
                  },
                  "includeClaimedEdges": {
                    "type": "boolean",
                    "default": false,
                    "description": "Also traverse edges that are claimed but not yet validated."
                  },
                  "horizonQuarters": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 8,
                    "default": 4
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/charting/series": {
      "post": {
        "summary": "Chart series",
        "description": "Resolve up to 8 chartable series (macro, fundamentals, stock/index/commodity prices) into aligned time series.",
        "operationId": "post-chart-series",
        "tags": [
          "Analytics"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "series",
                  "frequency"
                ],
                "properties": {
                  "series": {
                    "type": "array",
                    "minItems": 1,
                    "maxItems": 8,
                    "items": {
                      "type": "object",
                      "required": [
                        "id",
                        "descriptor",
                        "transformation",
                        "aggregation"
                      ],
                      "properties": {
                        "id": {
                          "type": "string",
                          "pattern": "^[A-Za-z0-9_-]{1,64}$",
                          "description": "Caller-chosen label echoed back with the series."
                        },
                        "descriptor": {
                          "$ref": "#/components/schemas/ChartSeriesDescriptor"
                        },
                        "transformation": {
                          "$ref": "#/components/schemas/Transformation"
                        },
                        "aggregation": {
                          "type": "string",
                          "enum": [
                            "mean",
                            "last",
                            "sum"
                          ]
                        }
                      }
                    }
                  },
                  "frequency": {
                    "type": "string",
                    "enum": [
                      "native",
                      "daily",
                      "weekly",
                      "monthly",
                      "quarterly",
                      "annual"
                    ]
                  },
                  "startDate": {
                    "type": "string",
                    "format": "date"
                  },
                  "endDate": {
                    "type": "string",
                    "format": "date"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/correlation/catalog": {
      "get": {
        "summary": "Series catalog",
        "description": "Series available to the correlation engine.",
        "operationId": "get-series-catalog",
        "tags": [
          "Analytics"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                },
                "example": {
                  "macro": [
                    {
                      "indicatorCode": "TRADE_WEIGHTED_DOLLAR",
                      "name": "Nominal Broad U.S. Dollar Index",
                      "category": "external",
                      "frequency": "Daily",
                      "units": "Index Jan 2006=100",
                      "observationStart": "2006-01-02",
                      "observationEnd": "2026-06-18"
                    },
                    {
                      "indicatorCode": "TRADE_BALANCE",
                      "name": "Trade Balance",
                      "category": "external",
                      "frequency": "Monthly",
                      "units": "Mil. of $",
                      "observationStart": "1992-01-01",
                      "observationEnd": "2026-04-01"
                    },
                    {
                      "indicatorCode": "USD_EUR_RATE",
                      "name": "U.S. / Euro Foreign Exchange Rate",
                      "category": "external",
                      "frequency": "Daily",
                      "units": "U.S. $ to  1 Euro",
                      "observationStart": "1999-01-04",
                      "observationEnd": "2026-06-18"
                    }
                  ],
                  "fundamentals": {
                    "companies": [
                      {
                        "companyId": "MMM",
                        "ticker": "MMM",
                        "name": "3M CO"
                      },
                      {
                        "companyId": "ABT",
                        "ticker": "ABT",
                        "name": "ABBOTT LABORATORIES"
                      },
                      {
                        "companyId": "ABBV",
                        "ticker": "ABBV",
                        "name": "AbbVie Inc."
                      }
                    ],
                    "metrics": [
                      {
                        "key": "revenue",
                        "label": "Revenue"
                      },
                      {
                        "key": "cost_of_revenue",
                        "label": "Cost of Revenue"
                      },
                      {
                        "key": "gross_profit",
                        "label": "Gross Profit"
                      }
                    ]
                  },
                  "prices": {
                    "companies": [
                      {
                        "companyId": "MMM",
                        "ticker": "MMM",
                        "name": "3M CO"
                      },
                      {
                        "companyId": "ABT",
                        "ticker": "ABT",
                        "name": "ABBOTT LABORATORIES"
                      },
                      {
                        "companyId": "ABBV",
                        "ticker": "ABBV",
                        "name": "AbbVie Inc."
                      }
                    ],
                    "fields": [
                      {
                        "key": "close",
                        "label": "Close Price"
                      },
                      {
                        "key": "adj_close",
                        "label": "Adjusted Close"
                      },
                      {
                        "key": "volume",
                        "label": "Volume"
                      }
                    ]
                  },
                  "indices": [
                    {
                      "symbol": "SPY",
                      "name": "SPDR S&P 500 ETF Trust",
                      "category": "broad_market"
                    },
                    {
                      "symbol": "QQQ",
                      "name": "Invesco QQQ Trust, Series 1",
                      "category": "broad_market"
                    },
                    {
                      "symbol": "DIA",
                      "name": "SPDR Dow Jones Industrial Average ETF",
                      "category": "broad_market"
                    }
                  ],
                  "commodities": [
                    {
                      "symbol": "H100",
                      "name": "NVIDIA H100 SXM",
                      "category": "gpu",
                      "tier": "reference",
                      "unit": "USD per GPU-hour",
                      "provider": "ORNN"
                    },
                    {
                      "symbol": "H200",
                      "name": "NVIDIA H200 SXM",
                      "category": "gpu",
                      "tier": "reference",
                      "unit": "USD per GPU-hour",
                      "provider": "ORNN"
                    },
                    {
                      "symbol": "B200",
                      "name": "NVIDIA B200",
                      "category": "gpu",
                      "tier": "reference",
                      "unit": "USD per GPU-hour",
                      "provider": "ORNN"
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/correlation/run": {
      "post": {
        "summary": "Run correlation",
        "description": "Correlate two series (optionally partialling out a control) with transformations and lag search.",
        "operationId": "post-run-correlation",
        "tags": [
          "Analytics"
        ],
        "x-tier": "free",
        "security": [
          {
            "apiKey": []
          },
          {
            "cognitoIdToken": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "seriesA",
                  "seriesB"
                ],
                "properties": {
                  "seriesA": {
                    "$ref": "#/components/schemas/SeriesDescriptor"
                  },
                  "seriesB": {
                    "$ref": "#/components/schemas/SeriesDescriptor"
                  },
                  "control": {
                    "$ref": "#/components/schemas/SeriesDescriptor"
                  },
                  "options": {
                    "type": "object",
                    "properties": {
                      "transformationA": {
                        "$ref": "#/components/schemas/Transformation"
                      },
                      "transformationB": {
                        "$ref": "#/components/schemas/Transformation"
                      },
                      "aggregation": {
                        "type": "string",
                        "enum": [
                          "mean",
                          "last",
                          "sum"
                        ]
                      },
                      "startDate": {
                        "type": "string",
                        "format": "date"
                      },
                      "endDate": {
                        "type": "string",
                        "format": "date"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "404": {
            "description": "Unknown company, country, symbol or resource.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "429": {
            "description": "Rate limited. Honour Retry-After.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    }
  }
}
