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

# Plaintext

> Get all sites on the StopModReposts blocklist in the plain text format.



## OpenAPI

````yaml GET /sites.txt
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.txt:
    get:
      summary: Get raw domain list
      responses:
        '200':
          description: Plain text list of domains
          content:
            text/plain:
              example: |-
                example.com
                example.net

````