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

# Claim graph

> Validated claim graph (nodes and edges).



## OpenAPI

````yaml /openapi.json get /api/v1/intelligence/graph
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.


    Tiers: `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.


    Rate 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.


    Not 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.
paths:
  /api/v1/intelligence/graph:
    get:
      tags:
        - Intelligence
      summary: Claim graph
      description: Validated claim graph (nodes and edges).
      operationId: get-claim-graph
      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'
      security:
        - apiKey: []
        - cognitoIdToken: []
components:
  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
  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.

````