POST
/
scan
/
{scan_id}
/
feedback
curl --request POST \
  --url https://api.urldna.io/scan/{scan_id}/feedback \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "attribute": "SAFE"
}'
{
  "malicious_count": 123,
  "safe_count": 123,
  "user_feedback": "<string>"
}

Authorizations

Authorization
string
header
required

Path Parameters

scan_id
string
required

Unique identifier of the scan.

Body

application/json
attribute
enum<string>
required

User's classification of the scan result.

Available options:
SAFE,
MALICIOUS

Response

200
application/json
Feedback successfully recorded.
malicious_count
number

Total number of users who classified this scan as MALICIOUS.

safe_count
number

Total number of users who classified this scan as SAFE.

user_feedback
string

The user's specific feedback, or null if none was provided.