> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gdeltcloud.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AI data centers

> Epoch AI data-center registry (CC-BY 4.0) — the largest AI compute clusters with power (MW), H100-equivalent compute, capital cost ($B), owner, chip types, and named users. Rows sort by compute (H100e) descending. Includes a per-country rollup (`by_country`) and dataset totals (`totals`). Requires a plan with AI compute & models access (`can_use_epoch_ai`) — the Corporate & Supply Chain and Global Intelligence plans. Response echoes `applied_filters`.



## OpenAPI

````yaml /api-reference/openapi-v2.json get /api/v2/epoch/data-centers
openapi: 3.0.3
info:
  title: GDELT Cloud API v2
  version: 2.0.0
  description: >-
    Clean v2 REST API for generated GDELT Cloud structured Events, clustered
    Stories, linked Entities, summaries, admin1 discovery, significance ranking,
    and paginated article evidence.


    Event significance is a family-scoped weighted blend, renormalized so every
    event family spans a true 0-1: each event's raw total is divided by the
    maximum its own family can reach (Conflict 1.00, CAMEO+ POLITICAL 0.90,
    other CAMEO+ domains 0.65). All events: Goldstein severity 0.25, article
    evidence 0.05, confidence 0.05. Conflict only: fatalities 0.55 (log-scaled
    by body count) and civilian targeting 0.10. CAMEO+ only: magnitude 0.20,
    systemic importance 0.15, propagation potential 0.10, market sensitivity
    0.10. When magnitude is unmeasured its term AND its 0.20 weight are both
    dropped. The four CAMEO+ metrics are rubric scores produced by published
    formulas - ordinal ranking signals, not measurements, probabilities, or
    predicted price moves. goldstein_scale is one canonical public metric,
    populated for Conflict Events and CAMEO+ POLITICAL Events where meaningful.
    Story linked_event_count is a Story-to-Event link aggregate, not a distinct
    Event total.
servers:
  - url: https://gdeltcloud.com
    description: Production
  - url: http://localhost:3000
    description: Local development
security:
  - ApiKeyAuth: []
tags:
  - name: Events
    description: Coded CAMEO+ / conflict events — search, fetch, and summarize.
  - name: Stories
    description: Clustered narratives (stories) and their articles.
  - name: Entities
    description: >-
      People & organizations — resolve a name to an entity, then fetch its
      profile and tone.
  - name: Geography
    description: Admin-1 geography lookups.
  - name: Energy
    description: Global Energy Monitor assets + ownership registry.
  - name: Facilities
    description: >-
      Unified physical-asset directory — GEM energy assets + World Port Index
      ports + Epoch AI data centers on one keyed surface, resolved to spine
      owners. Plan-gated (Analyst plan and up).
  - name: Screening and Reference
    description: >-
      Restricted-party lists, screening, and ownership-chain exposure.
      Plan-gated (`can_use_screening` / `can_use_exposure`).
  - name: China
    description: >-
      China overseas development finance (AidData GCDF). Plan-gated
      (`can_use_china`).
  - name: Media Intelligence
    description: >-
      Entity tone (`can_use_tone`) and Share of Voice (`can_use_share_of_voice`)
      are plan-gated. Social signal remains an admin-only preview.
  - name: Filings
    description: >-
      SEC EDGAR filings, XBRL financials, and AI-extracted relations. Requires a
      plan with SEC filings access (`can_use_filings`) — the Corporate & Supply
      Chain plan and above.
  - name: Macro Finance
    description: >-
      FRED economic time series (catalog, point-in-time observations, releases).
      Plan-gated (`can_use_macro`).
  - name: Maritime
    description: >-
      AIS-derived vessel-flow signals across maritime chokepoints — chokepoint
      transits, last-known vessel positions, carriers, dwell, and AIS-dark gaps.
      Plan-gated (`can_use_maritime`).
  - name: Briefs
    description: Source-backed monitoring briefs.
paths:
  /api/v2/epoch/data-centers:
    get:
      tags:
        - AI Compute
      summary: AI data centers
      description: >-
        Epoch AI data-center registry (CC-BY 4.0) — the largest AI compute
        clusters with power (MW), H100-equivalent compute, capital cost ($B),
        owner, chip types, and named users. Rows sort by compute (H100e)
        descending. Includes a per-country rollup (`by_country`) and dataset
        totals (`totals`). Requires a plan with AI compute & models access
        (`can_use_epoch_ai`) — the Corporate & Supply Chain and Global
        Intelligence plans. Response echoes `applied_filters`.
      operationId: list-epoch-data-centers-v2
      parameters:
        - name: country
          in: query
          required: false
          schema:
            type: string
          description: >-
            Data-center country filter. Accepts a country name (`United
            States`), ISO-2 (`US`), or ISO-3 (`USA`) via the shared
            `resolveCountryInput` layer, matched exactly on the canonical
            country name; an unresolvable value returns `400 INVALID_COUNTRY`.
        - name: owner
          in: query
          required: false
          schema:
            type: string
          description: >-
            Case-insensitive substring match on operating owner (e.g. Microsoft,
            Meta, xAI, Amazon). Alias: `org`.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 25
            minimum: 1
            maximum: 200
          description: Rows per page (1–200). Defaults to 25.
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: >-
            Canonical page token — pass the `pagination.next_cursor` from the
            previous response here to fetch the next page (uniform across all
            list endpoints).
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
          description: >-
            Row offset for pagination. Prefer the canonical `cursor` token; both
            are supported.
      responses:
        '200':
          description: >-
            A page of data centers plus a country rollup and totals. Envelope:
            `{ success, data, by_country, totals, pagination, applied_filters
            }`.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        owner:
                          type: string
                          nullable: true
                        current_power_mw:
                          type: number
                          nullable: true
                        current_h100e:
                          type: number
                          nullable: true
                        current_capital_cost_busd:
                          type: number
                          nullable: true
                        country:
                          type: string
                          nullable: true
                        users:
                          type: string
                          nullable: true
                        current_chip_types:
                          type: string
                          nullable: true
                        entity_id:
                          type: string
                        entity_page_name:
                          type: string
                  by_country:
                    type: array
                    items:
                      type: object
                      properties:
                        country:
                          type: string
                        data_centers:
                          type: integer
                        power_mw_total:
                          type: number
                        h100e_total:
                          type: number
                        capital_cost_busd_total:
                          type: number
                  totals:
                    type: object
                    properties:
                      'n':
                        type: integer
                      power_mw:
                        type: number
                      h100e:
                        type: number
                      capital_cost_busd:
                        type: number
                  pagination:
                    type: object
                    properties:
                      limit:
                        type: integer
                      offset:
                        type: integer
                      next_cursor:
                        type: string
                        nullable: true
                        description: >-
                          Canonical page token — pass it back as `cursor` to
                          fetch the next page (uniform across all list
                          endpoints). `null` when there are no more rows.
                      next_offset:
                        type: integer
                        nullable: true
                        deprecated: true
                        description: >-
                          Legacy — prefer `next_cursor` (still returned).
                          Numeric row offset of the next page.
                  applied_filters:
                    type: object
                    properties:
                      country:
                        type: string
                      owner:
                        type: string
                      ignored:
                        type: object
              examples:
                example:
                  summary: >-
                    GET /api/v2/epoch/data-centers?owner=Microsoft — example
                    response
                  value:
                    success: true
                    data:
                      - name: Fairwater (Mount Pleasant)
                        owner: Microsoft
                        current_power_mw: 300
                        current_h100e: 400000
                        current_capital_cost_busd: 3.3
                        country: United States
                        users: OpenAI
                        current_chip_types: NVIDIA GB200
                        entity_id: e_11223344aabbccdd
                        entity_page_name: Microsoft
                    by_country:
                      - country: United States
                        data_centers: 42
                        power_mw_total: 5200
                        h100e_total: 6100000
                        capital_cost_busd_total: 58.4
                    totals:
                      'n': 71
                      power_mw: 7300
                      h100e: 8400000
                      capital_cost_busd: 79.1
                    pagination:
                      limit: 25
                      offset: 0
                      next_cursor: null
                      next_offset: null
                    applied_filters:
                      owner: Microsoft
                      ignored: {}
        '401':
          description: Missing/invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: >-
            Plan required (PLAN_REQUIRED) — the caller's plan does not carry the
            required source entitlement.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
        code:
          type: string
        details:
          type: object
          description: >-
            Recoverable validation context when available, such as param,
            invalid_value, accepted_values, nearest_values, and a corrected
            example.
          additionalProperties: true
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: gdelt_sk_...
      description: 'GDELT Cloud API key. Send as `Authorization: Bearer gdelt_sk_...`.'

````