The Fraud Consortium by AtData was created to detect and monitor fraudulent email statuses and history within our platform and network. Our partners can update profile statuses and report confirmed fraud using a dedicated API. If you come across any fraudulent activity, report it to AtData.
Why Submit Fraud Feedback?
Reporting fraudulent activity to AtData helps to:
- Prevent similar frauds from happening in the future by keeping track of past fraud reports.
- Improve the accuracy of our fraud detection models by incorporating new fraud trends.
How to Submit Feedback?
The Submit Feedback API is how you can contribute to AtData's continuous improvement by reporting detected fraudulent activity. Your feedback helps enhance the accuracy and effectiveness of our fraud prevention measures, benefiting all users.
To use the Submit Feedback API, you will add your API key as a query parameter in the URL. This is exemplified below:
https://api.atdata.com/feedback/v1?api_key=<YOUR_API_KEY>
Remember to replace <YOUR_API_KEY>
with the API key created in Getting started's Step 2. Also, you will need to send a tab-separated file in the request. The recipe below shows an example code using Python to perform this request:
This tab-separated file can have the fields presented below:
Field | Description |
---|---|
query_id* | The UUID from the original query to the fraud API (if applicable). |
reference_id | Client’s reference Id. |
email* | Email address. |
md5_email* | MD5 hashed email address. |
risk_level | High/Medium/Low. |
first | First name. |
last | Last name. |
street | Address line 1. |
street2 | Address line 2. |
city | City. |
state | State. |
zip | Zip code. |
ip | IP address. |
phone | Phone number. |
risk_type | Category of risk or fraud identified by the client (e.g., credit card, chargeback, account takeover, etc.). |
source | How the feedback was determined (e.g., rule, manual review, chargeback). |
time | The date the fraud occurred in ISO-8601 format with time and time zone. |
comment | The optional text field provides context to the risk level for analysis, reporting, and modeling. |
*Required fields
At least one of
query_id
,md5_email
must be included to ensure each submission can be uniquely identified and properly processed.