Documentation
The API documentation
You'll need authorization to access the API or its documentation.
You'll need authorization to access the API or its documentation.
https:/entropyguardian.com/api/submitReport
from requests import post
headers = {'AUTH-XC' : 'example-api-key'}
report_body = {
'ip': 'example_data',
'email': 'example_data',
'phone': 'example_data',
'street': 'example_data',
'city': 'example_data',
'state': 'example_data',
'country': 'example_data',
'zip': 'example_data'
}
print(post(
"https://entropyguardian.com/submitReport;",
headers=headers,
json=report_body).text)
https:/entropyguardian.com/api/listReport
from requests import get
headers = {'AUTH-XC' : 'example-api-key'}
print(get(
"https://entropyguardian.com/listReport",
headers=headers.text)
https:/entropyguardian.com/api/redactReport
from requests import post
headers = {'AUTH-XC' : 'example-api-key'}
req_body = {
'id': 'example_id'
}
print(post(
"https://entropyguardian.com/redactReport",
headers=headers,
json=req_body).text)
https:/entropyguardian.com/api/review
from requests import post
headers = {'AUTH-XC' : 'example-api-key'}
req_body = {
'ip': 'example_data',
'email': 'example_data',
'phone': 'example_data',
'street': 'example_data',
'city': 'example_data',
'state': 'example_data',
'country': 'example_data',
'zip': 'example_data'
}
print(post(
"https://entropyguardian.com/review;",
headers=headers,
json=req_body).text)