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

# JSON

> Get all sites on the StopModReposts blocklist in the JSON format.



## OpenAPI

````yaml GET /sites.json
openapi: 3.0.3
info:
  title: StopModReposts Sites API
  description: >-
    API for retrieving lists of websites that redistribute mods illegally.
    Supports multiple formats including JSON, XML, YAML, and various blocklist
    formats.
  version: 1.0.0
  contact:
    name: StopModReposts
    url: https://stopmodreposts.org
servers:
  - url: https://api.stopmodreposts.org
    description: Production server
security: []
paths:
  /sites.json:
    get:
      summary: Get sites (JSON)
      operationId: getSitesJson
      responses:
        '200':
          description: A list of flagged sites in JSON format
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Site'
              example:
                - domain: example.com
                  notes: /
                  path: /
                  reason: Illegal redistribution
components:
  schemas:
    Site:
      type: object
      properties:
        domain:
          type: string
          example: example.com
        notes:
          type: string
          description: Additional information. '/' indicates no notes.
          example: /
        path:
          type: string
          description: Specific path on the domain to be blocked.
          example: /
        reason:
          type: string
          example: Illegal redistribution

````