Requests

Get Waitlist

GET https://report.stopmodreposts.org/api/v1/waitlist

The waitlist is a list of sites which are waiting for review. These sites cannot be submitted until they're of the waitlist (reviewed).

[
  {
    "domain": "example.com",
    "type": "report",
    "timestamp": "2022-05-23 17:27:30.324524"
  },
  ...
]

Get Blacklist

GET https://report.stopmodreposts.org/api/v1/blacklist

The blacklist is a list of (manually) blocked domains. These domains cannot be submitted.

[
  {
    "domain": "example.com"
  },
  ...
]

Post Report

POST https://report.stopmodreposts.org/api/v1/report

Post a site report or a false-positive report to this endpoint to get it reviewed by us.

{
    "detail": "Success!",
    "already_listed": False,
    "under_review": False,
    "blacklist": False,
    "data": {
        "domain": "example.com",
        "description": "Test description",
        "false-positive": False | True
    }
}

Last updated