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

# List infrastructure indicators attached to a report.

> Returns IP and domain indicators in deterministic IP-first order. Human requests require active platform access. Organisation, group, and user API keys require reports.view; individual root keys are allowed. API-key requests consume their owner's monthly request quota.



## OpenAPI

````yaml https://api.infrawatch.com/openapi.json?contract=d15375c get /reports/{report_uuid}/indicators
openapi: 3.1.0
info:
  description: >-
    Customer-facing Infrawatch APIs. Authenticate with an API key unless an
    operation documents another supported credential.


    ### Infrawatch Public API


    Public API authenticated exclusively with Infrawatch API keys.


    ### Infrawatch Customer Alerting API


    Project alert rules, destinations, silences, inbox state, and delivery
    history.


    ### Infrawatch Remote Browser API


    Project-scoped interactive browser sessions owned by Platform Core.


    Session admission, lifecycle, RBAC, audit, usage, screenshot history, and

    stream tickets are Platform Core resources. The browser master is private

    infrastructure and its identifiers, proxy routes, process options, and

    credentials are never exposed by this API.


    A session and all of its evidence are private to the credential that created

    it. Project managers may list project session metadata, inspect one
    session's

    metadata, and terminate it, but cannot access its live stream, screenshots,

    or network events.


    Terminal session metadata and screenshots are retained indefinitely. A

    creator can replay a terminal session as a new queued resource while

    preserving a durable link to the source session.


    ### Infrawatch ESI API


    Customer-facing External Surface Intelligence API for project-scoped

    product data authenticated by an Infrawatch API key. API keys

    are constrained to their immutable owner's project ceiling and assigned

    ESI scopes; human project-manager fallback never expands an API key.

    Authorised API-key requests are rate-limited and consume monthly quota.


    ### Infrawatch Reports API


    Threat report discovery API authenticated by an Infrawatch API key.


    ### Infrawatch Public Rules API


    Account-aware rule authoring, taxonomy, catalogue, and runtime observations
    for API clients.


    ### Infrawatch Search API


    Search hosts, services, DNS records, and certificates. Complete
    percent-encoded query strings are limited to 65536 bytes.
  title: Infrawatch Customer API
  version: 1.0.0
servers:
  - description: Infrawatch customer API
    url: https://api.infrawatch.com/api/v1
security: []
tags:
  - name: API Usage
  - name: Projects
  - name: Alert destinations
  - name: Alert rules
  - name: Alert silences
  - name: Alerts
  - name: Browser sessions
  - name: Browser evidence
  - name: Browser streaming
  - name: Access
  - name: Inventory
  - name: Dangling DNS
  - name: Findings
  - name: Secrets
  - name: Typosquatting
  - name: Services
  - name: AI Surface
  - description: Search hosts, services, DNS records, certificates, and open directories.
    name: Search
  - name: Dashboard
  - name: Reports
  - name: Rules
  - name: Rule tags
  - name: Rule observations
paths:
  /reports/{report_uuid}/indicators:
    servers:
      - url: https://api.infrawatch.com/api/v1
    parameters:
      - $ref: '#/components/parameters/reports_v1_ReportUUID'
    get:
      tags:
        - Reports
      summary: List infrastructure indicators attached to a report.
      description: >-
        Returns IP and domain indicators in deterministic IP-first order. Human
        requests require active platform access. Organisation, group, and user
        API keys require reports.view; individual root keys are allowed. API-key
        requests consume their owner's monthly request quota.
      operationId: listReportIndicators
      parameters:
        - $ref: '#/components/parameters/reports_v1_Limit'
        - $ref: '#/components/parameters/reports_v1_Offset'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/reports_v1_ReportIndicatorPage'
          description: Infrastructure indicators attached to the report.
        '400':
          $ref: '#/components/responses/reports_v1_BadRequest'
        '401':
          $ref: '#/components/responses/reports_v1_Unauthorized'
        '403':
          $ref: '#/components/responses/reports_v1_Forbidden'
        '404':
          $ref: '#/components/responses/reports_v1_NotFound'
        '429':
          $ref: '#/components/responses/reports_v1_TooManyRequests'
        '503':
          $ref: '#/components/responses/reports_v1_ServiceUnavailable'
      security:
        - apiKeyAuth: []
components:
  parameters:
    reports_v1_ReportUUID:
      in: path
      name: report_uuid
      required: true
      schema:
        format: uuid
        type: string
    reports_v1_Limit:
      in: query
      name: limit
      schema:
        default: 100
        maximum: 500
        minimum: 1
        type: integer
    reports_v1_Offset:
      in: query
      name: offset
      schema:
        default: 0
        minimum: 0
        type: integer
  schemas:
    reports_v1_ReportIndicatorPage:
      properties:
        indicators:
          items:
            $ref: '#/components/schemas/reports_v1_ReportIndicator'
          type: array
        pagination:
          $ref: '#/components/schemas/reports_v1_Pagination'
        report_uuid:
          format: uuid
          type: string
      required:
        - report_uuid
        - indicators
        - pagination
      type: object
    reports_v1_ReportIndicator:
      properties:
        last_observed_at:
          format: date-time
          type: string
        type:
          enum:
            - ip
            - domain
          type: string
        value:
          type: string
      required:
        - type
        - value
        - last_observed_at
      type: object
    reports_v1_Pagination:
      properties:
        limit:
          maximum: 500
          minimum: 1
          type: integer
        offset:
          minimum: 0
          type: integer
        total:
          minimum: 0
          type: integer
      required:
        - limit
        - offset
        - total
      type: object
    reports_v1_ErrorResponse:
      properties:
        error:
          properties:
            code:
              type: string
            field_errors:
              items:
                properties:
                  code:
                    type: string
                  field:
                    type: string
                  message:
                    type: string
                required:
                  - field
                  - code
                  - message
                type: object
              type: array
            message:
              type: string
            request_id:
              type: string
          required:
            - code
            - message
          type: object
      required:
        - error
      type: object
  responses:
    reports_v1_BadRequest:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/reports_v1_ErrorResponse'
      description: Invalid request.
    reports_v1_Unauthorized:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/reports_v1_ErrorResponse'
      description: Authentication required.
    reports_v1_Forbidden:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/reports_v1_ErrorResponse'
      description: Active platform access required.
    reports_v1_NotFound:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/reports_v1_ErrorResponse'
      description: Report not found.
    reports_v1_TooManyRequests:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/reports_v1_ErrorResponse'
      description: API-key rate limit or monthly request quota exceeded.
    reports_v1_ServiceUnavailable:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/reports_v1_ErrorResponse'
      description: API-key metering is temporarily unavailable.
  securitySchemes:
    apiKeyAuth:
      description: >-
        Infrawatch API key. Supply the complete key directly as the header
        value.
      in: header
      name: X-API-Key
      type: apiKey

````