Skip to main content

Dashboard

Monitor your URL scanning activities and threat detection metrics in real-time.

Total Scans

12,847

↑ 12% from last month

Threats Detected

247

↑ 8% from last month

Scan Success Rate

99.7%

Last 24 hours

Recent Activity

google.com

2 minutes ago

Clean

suspicious-site.net

5 minutes ago

Threat

example.com

8 minutes ago

Clean

test-site.org

12 minutes ago

Warning

System Performance

Average Response Time

0.8s

Uptime

99.9%

Quick Actions

URL Scanner

Advanced AI-powered URL detection and threat analysis.

Scan URL

Recent Scans

facebook.com

2 minutes ago

Clean

malware-site.com

5 minutes ago

Threat

github.com

8 minutes ago

Clean

Scan Statistics

Clean URLs 89%
Suspicious 8%
Malicious 3%

Quick Actions

Threat Analysis

Deep dive into threat patterns and security insights

Threat Timeline

Threat Intelligence

New phishing campaign detected

Targeting financial sector - 127 URLs identified

Malware distribution network

Command & control servers mapped

Zero-day exploit signatures

Updated detection rules deployed

Security analyst workstation
Security monitoring setup
Programmer analyzing threats

Detailed Analysis

Top Threat Categories

Phishing
45%
Malware
30%
Botnets
25%

Geographic Distribution

Reports

Comprehensive security reports and analytics

Monthly Security Report

Report Templates

Executive Summary

High-level security overview

Detailed Analysis

Comprehensive threat breakdown

Compliance Report

Regulatory compliance status

Performance analytics dashboard
Content marketing analytics
Security monitoring dialog boxes

Scheduled Reports

Report Name Frequency Next Run Status Actions
Weekly Security Summary Every Monday Dec 23, 2024 Active
Monthly Compliance Report 1st of Month Jan 1, 2025 Active

API Documentation

Complete API reference for URL detection automation

Quick Start

curl -X POST https://api.urlshield.ai/v1/scan \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'

Authentication

Headers

Authorization: Bearer <your-api-key>

Base URL

https://api.urlshield.ai/v1

Endpoints

POST /scan

# Request
{
  "url": "string",
  "options": {
    "deepScan": false,
    "includeDetails": true
  }
}
# Response
{
  "id": "scan_123",
  "url": "https://example.com",
  "status": "completed",
  "risk_score": 85,
  "threats": ["phishing", "malware"],
  "timestamp": "2024-12-19T10:00:00Z"
}

GET /scan/{id}

# Response
{
  "id": "scan_123",
  "url": "https://example.com",
  "status": "completed",
  "results": {
    "risk_score": 85,
    "threats": [...],
    "metadata": {...}
  }
}
Developer coding documentation
Computer screen with code
Debugging code

SDKs & Libraries

Python SDK

pip install urlshield

Node.js SDK

npm install urlshield-api

Java SDK

implementation 'com.urlshield:client:1.0.0'