StopModReposts
  • Welcome
  • ⚙️Sites API
    • What is the Sites API?
    • Requests
  • ⚙️Report API
    • What is the Report API?
    • Requests
  • 📖Guides
    • Takedown using DMCA
Powered by GitBook
On this page
  • Get Waitlist
  • Get Blacklist
  • Post Report

Was this helpful?

Edit on GitHub
  1. Report API

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
    }
}
{
    "detail": "Failed to report - domain already listed",
    "already_listed": False | True,
    "under_review": False | True,
    "blacklist": False,
    "data": {
        "domain": "example.com",
        "description": "Test description",
        "false-positive": False | True
    }
}
{
    "detail": "Failed to report - domain blacklisted",
    "already_listed": False,
    "under_review": False,
    "blacklist": True,
    "data": {
        "domain": "example.com",
        "description": "Test description",
        "false-positive": False | True
    }
}
PreviousWhat is the Report API?NextTakedown using DMCA

Last updated 3 years ago

Was this helpful?

⚙️