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

# Get

> Get the detailed status of abuse report by ID.




## OpenAPI

````yaml https://raw.githubusercontent.com/ngrok/ngrok-openapi/refs/heads/main/ngrok.yaml get /abuse_reports/{id}
openapi: 3.0.0
info:
  title: ngrok OpenAPI
  version: 1.0.0
servers:
  - url: https://api.ngrok.com
security:
  - authentication: []
paths:
  /abuse_reports/{id}:
    get:
      tags:
        - AbuseReports
      summary: Get
      description: |
        Get the detailed status of abuse report by ID.
      operationId: AbuseReportsGet
      parameters:
        - $ref: '#/components/parameters/ngrokVersion'
        - name: id
          description: |
            a resource identifier
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: |
            Get the detailed status of abuse report by ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbuseReport'
components:
  parameters:
    ngrokVersion:
      name: ngrok-version
      in: header
      required: true
      schema:
        type: integer
        default: 2
  schemas:
    AbuseReport:
      type: object
      properties:
        id:
          description: |
            ID of the abuse report
          type: string
        uri:
          description: |
            URI of the abuse report API resource
          type: string
        created_at:
          description: >
            timestamp that the abuse report record was created in RFC 3339
            format
          type: string
        urls:
          description: |
            a list of URLs containing suspected abusive content
          type: array
          items:
            type: string
        metadata:
          description: >
            arbitrary user-defined data about this abuse report. Optional, max
            4096 bytes.
          type: string
        status:
          description: >
            Indicates whether ngrok has processed the abuse report. one of
            `PENDING`, `PROCESSED`, or `PARTIALLY_PROCESSED`
          type: string
        hostnames:
          description: |
            an array of hostname statuses related to the report
          type: array
          items:
            $ref: '#/components/schemas/AbuseReportHostname'
    AbuseReportHostname:
      type: object
      properties:
        hostname:
          description: >
            the hostname ngrok has parsed out of one of the reported URLs in
            this abuse report
          type: string
        status:
          description: >
            indicates what action ngrok has taken against the hostname. one of
            `PENDING`, `BANNED`, `UNBANNED`, or `IGNORE`
          type: string
  securitySchemes:
    authentication:
      type: http
      scheme: bearer

````